此文章来源于项目官方大众号:“AirtestProject”
版权声明:答应转载,但转载必须保留原链接;请勿用作商业或许不合法用处

1. 前言

前段时间Airtest更新了1.3.0.1版别,里边涉及非常多的iOS功用新增和改动,今日想详细跟咱们聊一下里边的iOS设备接口

PS:本文示例均运用本地连接的iOS设备,Airtest版别为1.3.0.1 。

2. 装置接口:installinstall_app

Airtest支撑通过本地.ipa文件装置APP,也支撑通过下载链接装置APP,以本地ipa文件为例:

# -*- encoding=utf8 -*-
__author__ = "AirtestProject"from airtest.core.api import *
auto_setup(__file__)
​
install(r"D:\my_popo\email.ipa") 

Airtest的iOS实用接口介绍
当然上述装包功用,咱们用 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. 卸载接口:uninstalluninstall_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)

PS:在1.3.0.1版别的Airtest里边运用该接口,会报一个 TypeError: list_app() got an unexpected keyword argument 'type' 的过错,咱们将在后续的版别中修复它。

5. 剪切板功用:get_clipboardset_clipboard

新版Airtest还支撑设置iOS设备的剪切板,咱们能够从一个简单的示例来查看这个功用:

  • 设置剪切板内容
  • 获取并打印剪切板内容
  • 张贴剪切板内容
# -*- 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. 小结

今日的iOS接口就介绍到这儿,下期咱们能够一同看看Airtest里边封装的tidevice接口,能带来哪些iOS功用。如果对咱们的内容感兴趣的话,别忘了持续重视咱们哟~


AirtestIDE下载:airtest.netease.com/
Airtest 教程官网:airtest.doc.io.netease.com/
建立企业私有云服务:airlab.163.com/b2b

官方答疑 Q 群:117973773