👆对私有云感兴趣可以进入公众号回复“私有云”哦。
1. 前言
2. 安装接口:install、install_app
# -*- encoding=utf8 -*-
__author__ = "AirtestProject"
from airtest.core.api import *
auto_setup(__file__)
install(r"D:\my_popo\email.ipa")
device().install_app
也可以实现:
# -*- encoding=utf8 -*-
__author__ = "AirtestProject"
from airtest.core.api import *
auto_setup(__file__)
dev = device()
dev.install_app(r"D:\my_popo\email.ipa")
3. 卸载接口:uninstall、uninstall_app
uninstall
,也可以通过 device().uninstall_app
来卸载指定APP,这里以 uninstall_app
为例:
# -*- encoding=utf8 -*-
__author__ = "AirtestProject"
from airtest.core.api import *
auto_setup(__file__)
dev = device()
dev.uninstall_app("com.netease.mailmaster")
install
接口也是一样的效果:
# -*- encoding=utf8 -*-
__author__ = "AirtestProject"
from airtest.core.api import *
auto_setup(__file__)
uninstall("com.netease.mailmaster")
4. 列出所有APP的接口:list_app
list_app
列出iOS设备的APP列表,并且支持在 list_app("")
里传入要列出的app类型,all、system、user
,分别对应全部APP、系统APP、用户安装的APP,这里以列出用户安装的APP信息为例:
# -*- encoding=utf8 -*-
__author__ = "AirtestProject"
from airtest.core.api import *
auto_setup(__file__)
dev = device()
#列出并打印用户安装的APP
print("---------以下是用户安装的APP的信息-----------")
user_app = dev.list_app("user")
print(user_app)
TypeError: list_app() got an unexpected keyword argument 'type'
的错误,我们将在后续的版本中修复它。
5. 剪切板功能:get_clipboard
、set_clipboard
-
设置剪切板内容 -
获取并打印剪切板内容 -
粘贴剪切板内容
# -*- encoding=utf8 -*-
__author__ = "AirtestProject"
from airtest.core.api import *
auto_setup(__file__)
#设置剪贴板内容
set_clipboard("content")
#获取并打印剪切板内容
text = get_clipboard()
print("当前剪切板内容:" + text)
#单击唤出粘贴按钮
touch([50,310])
#粘贴剪切板内容
touch(Template(r"tpl1692173001410.png", record_pos=(-0.38, -0.788), resolution=(750, 1624)))
6. 小结
本文分享自微信公众号 - AirtestProject(AirtestProject)。
如有侵权,请联系 support@oschina.cn 删除。
本文参与“OSC源创计划”,欢迎正在阅读的你也加入,一起分享。