Hi,大家好,我是编程小6,很荣幸遇见你,我把这些年在开发过程中遇到的问题或想法写出来,今天说一说微信小程序自动化测试工具Airtest,希望能够帮助你!!!。
跨平台的UI自动化框架,适用于游戏和App
从官网https://airtest.netease.com 开始上手吧
Android |
iOS |
Windows |
Unity |
Cocos2dx |
白鹭引擎 |
微信小程序 |
使用 pip 安装Airtest框架
pip install -U airtest
在Mac/Linux系统下,需要手动赋予adb可执行权限
# mac系统
cd {your_python_path}/site-packages/airtest/core/android/static/adb/mac
# linux系统
# cd {your_python_path}/site-packages/airtest/core/android/static/adb/linux
chmod +x adb
如果你需要使用GUI工具,请从 官网(https://airtest.netease.com) 下载AirtestIDE。
完整的Airtest文档请看 readthedocs。
Airtest希望提供平台无关的API,让你的自动化代码可以运行在不同平台的应用上。
from airtest.core.api import *
# 通过ADB连接本地Android设备
init_device("Android")
# 或者使用connect_device函数
# connect_device("Android:///")
connect_device("Android:///")
install("path/to/your/apk")
start_app("package_name_of_your_apk")
touch(Template("image_of_a_button.png"))
swipe(Template("slide_start.png"), Template("slide_end.png"))
assert_exists(Template("success.png"))
keyevent("BACK")
home()
uninstall("package_name_of_your_apk")
更详细的说明请看 Airtest Python API 文档 或者直接看 API代码 。
使用AirtestIDE你可以非常轻松地录制一个自动化脚本并保存为 .air 目录结构。 Airtest命令行则让你能够脱离IDE,在不同宿主机器和被测设备上运行自动化脚本。
# 在本地ADB连接的安卓手机上运行脚本
airtest run "path to your air dir" --device Android:///
# 在Windows应用上运行脚本
airtest run "path to your air dir" --device "Windows:///?title_re=Unity.*"
# 生成HTML报告
airtest report "path to your air dir"
# 也可以用python -m的方式使用命令行
python -m airtest run "path to your air dir" --device Android:///
今天的分享到此就结束了,感谢您的阅读,如果确实帮到您,您可以动动手指转发给其他人。