接前面的常用API(一),本文接着介绍如下:

1.press_keycode

press_keycode(self, keycode, metastate=None):

 Sends a keycode to the device. Android only. Possible keycodes can be found in http://developer.android.com/reference/android/view/KeyEvent.html

发送按键码(安卓仅有),模拟点击相应铵键,按键码可以上网址中找到

:Args:

- keycode - the keycode to be sent to the device

- metastate - meta information about the keycode being sent

  Usage:

 driver.press_ keycode(‘4’)      #按返回键

2.long_press_keycode

long_press_keycode(self, keycode, metastate=None):

 Sends a long press of keycode to the device. Android only.

发送一个长按的按键码(长按某键)

:Args:

- keycode - the keycode to be sent to the device

- metastate - meta information about the keycode being sent

  Usage:

  driver.long_press_keycode(‘4’)    #长按返回键

3.is_app_installed

is_app_installed(self, bundle_id):

 Checks whether the application specified by `bundle_id` is installed on the device.

检查app是否有安装

 返回 True or False

:Args:

- bundle_id - the id of the application to query

  Usage:

 driver.is_app_installed(“com.xxxx”)     #app包名

4.install_app

install_app(self, app_path):

 Install the application found at `app_path` on the device.

安装app,app_path为安装包路径

:Args:

- app_path - the local or remote path to the application to install

  Usage:

 driver.install_app(app_path)

5.remove_app

remove_app(self, app_id):

 Remove the specified application from the device.

删除app

:Args:

- app_id - the application id to be removed

 Usage:

driver.remove_app(“com.xxx.”)   #app包名

6.open_notifications

open_notifications(self):

 Open notification shade in Android (API Level 18 and above)

 打系统通知栏(仅支持API 18 以上的安卓系统)

 Usage:

 driver.open_notifications()    ##打开系统通知栏

7.launch_app

launch_app(self):

 Start on the device the application specified in the desired capabilities.

 启动app

 Usage:

 driver.launch_app()     #启动应用,一般与close_app配合使用

8.close_app

close_app(self):

 Stop the running application, specified in the desired capabilities, on the device.

 关闭app

 Usage:

 driver.close_app()    #关闭应用,此方法并非真正的关闭应用,相当于按home键将应用置于后台,可以通过launch_app()再次启动

9.is_selected

is_selected(self):

 Returns whether the element is selected.

Can be used to check if a checkbox or radio button is selected.

 可以用来检查一个复选框或单选按钮被选中,返回元素是否选择 True of False

 Usage:

 element.is_slected()

10.is_enabled

is_enabled(self):

 Returns whether the element is enabled.

返回元素是否可用True of False

 Usage:

 element.is_enabled()

11.is_displayed

is_displayed(self):

 Whether the element is visible to a user.

 判断此元素用户是否可见。返回True of False

 Usage:

 driver.element.is_displayed()   #判断是否显示

12.close

close(self):

Closes the current window.

关闭当前窗口

Usage:

driver.close()

Appium常用API(二)的更多相关文章

  1. 7、Appium常用API

    嗯,官网已经介绍的很全了.会选几个常用API后期整理. Appium常用API地址:http://appium.io/docs/cn/writing-running-appium/appium-bin ...

  2. appium 常用api介绍(2)

    前言:接着上一篇继续讲常用的一些api 参考博文:http://blog.csdn.net/bear_w/article/details/50330565 1.send_keys send_keys( ...

  3. appium 常用API使用总结!

    将常用函数进行适用总结,后期在使用的过程中直接查找调用即可 获取界面属性.控件属性 1.current_activity:获取activity名称 device.current_activity 2. ...

  4. Appium常用API(一)

    Appium作为当下一款移动应用的自动化测试工具,对于测试来说重要性不言可寓,废话不多说,下面总结下它常用的API: 1.contextscontexts(self): Returns the con ...

  5. appium 常用API

    ''.appium api第二弹 锋利的python,这是初稿,2015/1/5 如有错误的地方,请同学们进行留言,我会及时予以修改,尽量整合一份ok的api 作者:Mads Spiral QQ:79 ...

  6. Express4.x常用API(二):Request

    这是第二篇了,打算每天都拿些时间去详细的看看文档来自学下express吧,接下来就开始了,这次依然是有选择性的找API根据自己的理解翻译过来,方便日后开发时候的自己查阅,由于水平有限,大概也会在使用过 ...

  7. appium 常用api介绍(1)

    前言:android手机大家都很熟悉,操作有按键.触摸.点击.滑动等,各种操作方法可以通过api的方法来实现. 参考博文:http://blog.csdn.net/bear_w/article/det ...

  8. Appium常用Api实操

    本文是基于python语言在android上实操的,仅记录(忽略排版~~~) 会不时更新的: from appium import webdriver from selenium.webdriver. ...

  9. APPIUM 常用API介绍(3)

    1.send_keys send_keys(self, *value): Simulates typing into the element[在元素中模拟输入(开启appium自带的输入法并配置了ap ...

随机推荐

  1. 【开源推荐】PredictionIO:构建预测功能的机器学习服务器

    PredictionIO是一款开源的机器学习服务器,开发工程师和数据分析师可以使用它构建智能应用程序,并且还可以做一些预测功能,比如个性化推荐.发现内容等.好比开发者可以使用数据库服务器过滤信息. P ...

  2. mysql 使用inet_aton和inet_ntoa处理ip地址数据

    mysql 使用inet_aton和inet_ntoa处理ip地址数据 mysql提供了两个方法来处理ip地址 inet_aton 把ip转为无符号整型(4-8位) inet_ntoa 把整型的ip转 ...

  3. sqlnet.ora限制客户端IP访问

    实现功能: 只允许某几个IP访问数据库服务端(白名单): $ORACLE_HOME/network/admin/sqlnet.ora 添加2个主要参数 TCP.VALIDNODE_CHECKING=y ...

  4. PHP调用Linux的命令行执行文件压缩命令&&创建文件夹修改权限

    一开始,我和普通青年一样,想到用PHP内置的 ZipArchive纠结的是环境上没安装zip扩展,想采用用PHP调用Linux的命令行 ,执行压缩命令,感兴趣的朋友可以了解下,希望本文对你有所帮助 前 ...

  5. Spring中使用JDBC

    Spring中的数据库异常体系 使用JDBC(不使用Spring)的时候,我们需要强制捕获SQLException,否则无法使用JDBC处理任何事情.SQLException表示尝试访问数据库的时候出 ...

  6. Phython智能分词开发

    Git/GitHub 一.开发环境安装 1.安装Anaconda 官方下载地址:https://www.anaconda.com/download/ Anaconda自带Flask 2.安装模块/插件 ...

  7. mysql数据导入的时候提示Got a packet bigger than 'max_allowed_packet' bytes

    Got a packet bigger than 'max_allowed_packet' bytes错误 默认可能是2M 把max_allowed_packet设置大于5M试试,我设置为160M,输 ...

  8. OpenCL 第一个计算程序,两向量之和

    ▶ 一个完整的两向量加和的过程,包括查询平台.查询设备.创建山下文.创建命令队列.编译程序.创建内核.设置内核参数.执行内核.数据拷贝等. ● C 代码 #include <stdio.h> ...

  9. Java 8 新特新 工具类 ZonedDateTime

    类ZonedDateTime java.lang.Object继承 java.time.ZonedDateTime 所有实现的接口: Serializable,Comparable < Chro ...

  10. C# 使用printDocument1.Print打印时不显示 正在打印对话框(里面还有一个讨厌的取消按钮)

    C#使用printDocument1.Print打印时不显示正在打印对话框有两种方法 第一种,使用PrintController PrintController printController = n ...