Airtest IDE 自动化测试16 - 本地 python3 环境命令运行 airtest 脚本
2022/8/30 1:24:13
本文主要是介绍Airtest IDE 自动化测试16 - 本地 python3 环境命令运行 airtest 脚本,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
前言
Airtest IDE 自带了 python3 环境,但是每次执行脚本都需要打开IDE,在IDE 上点运行按钮才能执行。
如果我们想通过命令行执行脚本,可以在本机安装python3
环境准备
安装python3 环境 和pip,这个不多说,我用的python3.7环境
1 2 3 4 5 |
C:\Users\Administrator>python
Python 3.7 . 0 (v3. 7.0 : 1bf9cc5093 , Jun 27 2018 , 04 : 59 : 51 ) [MSC v. 1914 64 bit (AMD6
4 )] on win32
Type "help" , "copyright" , "credits" or "license" for more information.
>>>
|
pip 安装 Airtest 库
1 2 |
C:\Users\Administrator>pip install airtest - - index - url https: / / pypi.douban.com / s
imple
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
C:\Users\Administrator>pip show airtest
Name: airtest
Version: 1.1 . 11
Summary: UI Test Automation Framework for Games and Apps on Android / iOS / Windows /
Linux
Home - page: https: / / github.com / AirtestProject / Airtest
Author: Netease Games
Author - email: gzliuxin@corp.netease.com
License: Apache License 2.0
Location: c:\users\administrator\appdata\local\programs\python\python37\lib\site
- packages
Requires: Jinja2, Pillow, requests, six, mss, numpy, opencv - contrib - python, face
book - wda, pywinauto, pywin32
Required - by:
C:\Users\Administrator>
|
pip 安装 poco 框架,库名是 pocoui
1 2 |
C:\Users\Administrator>pip install pocoui - - index - url https: / / pypi.douban.com / si
mple
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
C:\Users\Administrator>pip show pocoui
Name: pocoui
Version: 1.0 . 84
Summary: Poco cross - engine UI automated test framework.
Home - page: https: / / github.com / AirtestProject / Poco
Author: Netease Games
Author - email: lxn3032@corp.netease.com, gzliuxin@corp.netease.com
License: Apache License 2.0
Location: c:\users\administrator\appdata\local\programs\python\python37\lib\site
- packages
Requires: six, requests, airtest, hrpc, websocket - client
Required - by:
C:\Users\Administrator>
|
安装了airtest 和pocoui 后就可以不用 AirtestIDE,自己写python脚本,运行脚本了。
命令行参数
AirtestIDE 上运行脚本后,查看日志
1 |
"D:\tools\AirtestIDE-win-1.2.12\AirtestIDE\AirtestIDE" runner "D:\study\airtest2021\a01.air" - - device android: / / 127.0 . 0.1 : 5037 / emulator - 5554 ?cap_method = MINICAP&&ori_method = MINICAPORI&&touch_method = MINITOUCH - - log "C:\Users\Administrator\AppData\Local\Temp\AirtestIDE\scripts\7a193bbe7d3636ce98d92de5104a7d6e"
|
运行可以知道运行脚本的命令格式
1 |
AirtestIDE runner 脚本.air - - device android: / / 127.0 . 0.1 : 5037 / emulator - 5554 (手机设备) - - log 指定日志保存路径
|
参数说明:
- AirtestIDE AirtestIDE 执行命令行工具
- runner 需运行的脚本,后面参数指定脚本地址,格式是*.air 目录的格式
- --device host 是adb server 所在主机的ip,默认是本机127.0.0.1,adb port默认是5037,后面是android手机的序列号,adb device查看到的
- --log 指定日志保存路径
本地 python3 安装完airtest 库后,可以用airtest 命令代替 AirtestIDE,run 指令代替 runner.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
C:\Users\Administrator>airtest
usage: airtest [ - h] {version,run,info,report} ...
positional arguments:
{version,run,info,report}
version / run / info / report
version show version and exit
run run script
info get & print author / title / desc info of script
report generate report of script
optional arguments:
- h, - - help show this help message and exit
C:\Users\Administrator>
|
运行.air 脚本
运行脚本和生成 html 报告是2个步骤,cd到脚本所在目录
run 运行脚本
1 2 |
D:\study\airtest2021>airtest run a01.air - - device android: / / 127.0 . 0.1 : 5037 / emula
tor - 5554 - - log . / log
|
运行完成后,在当前脚本目录会生成一个log文件夹,log.txt 记录测试运行结果
生成 html 报告
生成测试报告 report 命令
1 2 |
D:\study\airtest2021>airtest report a01.air - - log_root . / log - - outfile . / log / log
.html - - lang zh
|
参数说明:
report 指定运行脚本生成报告
--log_root 指定log文件命令
--outfile 指定log.html 文件存放地方
--lang zh 是报告显示中文
查看报告
这篇关于Airtest IDE 自动化测试16 - 本地 python3 环境命令运行 airtest 脚本的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-14获取参数学习:Python编程入门教程
- 2024-11-14Python编程基础入门
- 2024-11-14Python编程入门指南
- 2024-11-13Python基础教程
- 2024-11-12Python编程基础指南
- 2024-11-12Python基础编程教程
- 2024-11-08Python编程基础与实践示例
- 2024-11-07Python编程基础指南
- 2024-11-06Python编程基础入门指南
- 2024-11-06怎么使用python 计算两个GPS的距离功能-icode9专业技术文章分享