Appium设备交互API

设备交互API指的是操作设备系统中的一些固有功能,而非被测程序的功能,例如模拟来电,模拟发送短信,设置网络,切换横竖屏,APP操作,打开通知栏,录屏等。

模拟来电

make_gsm_call(phone_number,action)方法可模拟来电,只能在模拟器使用,

driver.make_gms_call("电话号码",GsmCallActions.Call)

模拟发送短信

只能在模拟器使用

发短信 driver.send_sms("电话号码","短信内容")

锁屏

driver.lock(3) 单位为s

获取锁屏状态

driver.is_locked()

解锁

driver.unlock()

打开通知栏

复制代码
driver.open_notifications()

获取网络状态

复制代码
driver.network_connection()

设置网络状态

复制代码
driver.set_network_connection()

摇一摇

复制代码
driver.shake()

推送文件

复制代码
driver.push_file()

获取文件

复制代码
driver.pull_file()

获取文件夹

复制代码
driver.pull_folder()

安装app

复制代码
driver.install_app()

启动APP

复制代码
driver.start_activity()

卸载app

复制代码
driver.remove_app()

获取app安装状态

复制代码
driver.is_app_installed()

将app置于后台

复制代码
driver.background_app()
相关推荐
niuniu_6661 天前
安全性测试(Security Testing)
测试工具·单元测试·appium·测试·安全性测试
niuniu_6662 天前
appium应用测试场景
功能测试·selenium·测试工具·appium·测试
suimeng63 天前
Appium中元素定位的注意点
appium
suimeng65 天前
Appium中元素定位之一个元素定位API
appium
一禅(OneZen)5 天前
【L2.第二章】Appium 元素定位工具
python·selenium·appium·自动化·web
suimeng66 天前
Appium中元素定位之一组元素定位API
appium
开水好喝7 天前
Appium Inspector使用教程
appium
曦若(xi ruo)16 天前
自动化APP测试APPium的元素等待
运维·appium·自动化
qq_白羊座20 天前
UI自动化:poium测试库使用文档
python·selenium·ui·appium
fantasy_420 天前
Appium高级操作--ActionChains类、Toast元素识别、Hybrid App操作、手机系统API的操作
android·python·appium·自动化