一、下载python

《1》去官网下载: https://www.python.org/

《2》 百度网盘分享,python-3.5.1.exe:

链接:https://pan.baidu.com/s/127QEBpb5e7Yj2DOx1k7vNw
提取码:82n7

下载好后,安装

二、配置python环境变量

配置python环境:

《1》右击我的电脑----》属性----》高级系统设置----》环境变量—》系统变量中的path----》添加安装python的根目录

airtest Windows如何连接ios手机 airtest控制windows_python

《2》右击我的电脑—》属性----》高级系统设置----》环境变量—》系统变量中的path----》添加安装python目录中的scrpits路径

airtest Windows如何连接ios手机 airtest控制windows_Chrome_02


《3》 验证是否配置好python环境打开cmd,输入python

airtest Windows如何连接ios手机 airtest控制windows_python_03


能够与python进行交互就表示配置好了

这里配的scrpits是为了能够直接使用pip命令来安装selenium库

因为AirtestIDE是基于selenium、继承python语法的,所以这里需要安装selenium库

打开cmd,输入:

pip install selenium

有可能会报超时的错误,那么你可以在cmd中输入这个:

**pip3 --default-timeout=100 install selenium -i https://pypi.tuna.tsinghua.edu.cn/simple/**

airtest Windows如何连接ios手机 airtest控制windows_环境变量_04

三、安装AirtestIDE

《1》官网下载:http://airtest.netease.com/

airtest Windows如何连接ios手机 airtest控制windows_python_05

《2》 百度网盘分享链接

链接: https://pan.baidu.com/s/1cYYMcjXBfy1sblCRpUmiTw 提取码: km97

四、安装谷歌浏览器

百度去搜吧,这个太常见了~~~

五、在AirtestIDE内配置Chrome浏览器路径

《1》打开AirtestIDE安装路径下的AirtestIDE.exe可执行文件,会弹出一个命令终端

airtest Windows如何连接ios手机 airtest控制windows_Airtest_06

airtest Windows如何连接ios手机 airtest控制windows_Chrome_07


会弹出让你登录的页面,跳过就行

airtest Windows如何连接ios手机 airtest控制windows_环境变量_08

《2》 配置Chrome路径

点击选项------设置------Chrome Path----选择你安装Chrome浏览器目录中的chrome.exe

airtest Windows如何连接ios手机 airtest控制windows_Chrome_09


选择你安装Chrome浏览器目录下的chrome.exe文件

airtest Windows如何连接ios手机 airtest控制windows_Airtest_10

六、验证下Airtest

这里已打开百度示例

《1》新建一个airtest项目

airtest Windows如何连接ios手机 airtest控制windows_环境变量_11

《2》起一个项目名,这里我就默认了

airtest Windows如何连接ios手机 airtest控制windows_Chrome_12

《3》点开selenium window窗口

窗口---勾选selenium window

airtest Windows如何连接ios手机 airtest控制windows_python_13


《4》点击浏览器图标,类似于一个小地图的样子

airtest Windows如何连接ios手机 airtest控制windows_python_14

之后会弹出浏览器,然后输入你要测试的url网址,且在ide中也会出现yes、no

airtest Windows如何连接ios手机 airtest控制windows_Chrome_15

这里我们选择yes就可以了,它会自己将模块导入、补全

airtest Windows如何连接ios手机 airtest控制windows_环境变量_16

airtest Windows如何连接ios手机 airtest控制windows_Airtest_17

《5》 点击start_web,会自动写入driver.get(“你要打开的网址”)

airtest Windows如何连接ios手机 airtest控制windows_环境变量_18

《6》运行脚本,就可以开始进行Airtest使用啦

airtest Windows如何连接ios手机 airtest控制windows_环境变量_19

airtest Windows如何连接ios手机 airtest控制windows_Chrome_20

至此,AirtestIDE环境就搭建好了

总的来说 Airtest还是比较实用的,可以对web端、app端以及windows桌面应用进行自动化测试,而且操作便捷,但还是需要一定的python基础的哈

快速上手文档(官方,记录还算比较完整)