如何正确使用Airtest报告插件?报告小tips上线

简介: 如何正确使用Airtest报告插件?报告小tips上线

此文章来源于项目官方公众号:“AirtestProject”

版权声明:允许转载,但转载必须保留原链接;请勿用作商业或者非法用途

1. 前言

在使用Airtest做自动化测试时,默认生成的报告,其实是airtest的专属报告。

它对于poco语句(控件测试场景)、airtest-selenium语句(web测试场景)的支持不够完善,因此我们需要用 插件的形式 来补充支持poco语句和airtest-selenium语句。

Airtest的报告插件,目前有2个:

  • 用于支持poco语句的,poco.utils.airtest.report
  • 用于支持airtest-selenium语句的,airtest_selenium.report

2. Airtest报告出现一个未知的record_ui

我们从新手同学的一个常见问题中,来具体看下我们报告插件的作用:

# -*- encoding=utf8 -*-
__author__ = "AirtestProject"
from airtest.core.api import *
from airtest.report.report import simple_report
LOG_PA = r"D:\report\log"
auto_setup(__file__, logdir=LOG_PA, devices=["android://127.0.0.1:5037/QV720N"])
from poco.drivers.android.uiautomation import AndroidUiautomationPoco
poco = AndroidUiautomationPoco(use_airtest_input=True, screenshot_each_action=False)
poco("信息功能").click()
simple_report(__file__,logpath=LOG_PA,output=r"D:\report\poco_report.html")

这是一个非常简单的纯py脚本,运行脚本之后,也顺利生成了测试报告,但是这个测试报告显示的步骤,却不是我们所期望的那样。理论上,这里应该只有一个poco点击的步骤,但实际上是有2个步骤,其中一个record_iu,还是我们不熟知的步骤名:

image.png

其实,这里是因为在生成包含poco语句的报告时,没有带上支持poco语句的报告插件的原因,我们可以把这个插件在生成报告时,加上看下:

# 换一种带插件的报告生成方式
h1 = LogToHtml(script_root=__file__, log_root=LOG_PA, lang='zh', plugins=['poco.utils.airtest.report'])
h1.report(output_file=r"D:\report\poco_report2.html")

image.png

可以看到,我们的报告就能正常显示poco点击的步骤了。

3. airtest-selenium报告不显示图片

还有一个常见问题是在生成包含airtest-selenium语句的报告时,出现步骤没有截图的情况:

# -*- encoding=utf8 -*-
__author__ = "AirtestProject"
from airtest.core.api import *
from airtest.report.report import simple_report,LogToHtml
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
from airtest_selenium.proxy import WebChrome
driver = WebChrome()
driver.implicitly_wait(20)
LOG_PA = r"D:\report\log2"
auto_setup(__file__, logdir=LOG_PA)
driver.get("https://www.baidu.com/")
driver.snapshot()
simple_report(__file__,logpath=LOG_PA,output=os.path.join(LOG_PA, "web_report.html"))

这个问题,也是因为没有加上支持airtest-selenium语句的报告插件:

# 换一种带插件的报告生成方式
h1 = LogToHtml(script_root=__file__, log_root=LOG_PA, lang='zh', plugins=['airtest_selenium.report'])
h1.report(output_file=os.path.join(LOG_PA, "web_report2.html"))

可以看到,这时候我们步骤里的截图,就可以正常显示出来了。

PS:airtest-selenium的html格式的报告,需要跟log截图与log.txt在同级目录下,截图才能正常显示。

4. 如何添加我们的报告插件

简单了解过Airtest报告插件的作用之后,我们可以看下,在脚本生成报告以及命令行生成报告时,我们都是如何添加报告插件的。

1)如何在脚本里添加报告插件

Airtest给我们提供了2种脚本生成测试报告的方式:

  • 简化参数的方式,simple_report
  • 完整参数的方式,LogToHtml

只有在完整参数的方式,即使用LogToHtml时,我们才能加入报告的插件参数plugins

# 生成包含poco脚本的Airtest报告时
h1 = LogToHtml(script_root=__file__, log_root=LOG_PA, lang='zh', plugins=['poco.utils.airtest.report'])
h1.report(output_file=r"D:\report\poco_report2.html")
# 生成包含airtest-selenium脚本的Airtest报告时
h1 = LogToHtml(script_root=__file__, log_root=LOG_PA, lang='zh', plugins=['airtest_selenium.report'])
h1.report(output_file=r"D:\report\web_report2.html")
2)如何在命令行里添加报告插件

命令行运行脚本和生成报告是单独的2条命令,所以我们在执行完脚本运行的命令之后,就可以使用生成报告的命令来生成html格式的报告了,命令行添加报告插件的方式也非常简单,加上--plugins即可:

# 生成包含poco脚本的Airtest报告时
airtest report "D:/demo/test111.py" --log_root "D:/report/log2" --lang "zh" --outfile "D:/report/poco_report2.html" --plugins "poco.utils.airtest.report"
# 生成包含airtest-selenium脚本的Airtest报告时
airtest report "D:/demo/test222.py" --log_root "D:/report/log2" --lang "zh" --outfile "D:/report/selenium_report.html" --plugins "airtest_selenium.report"
3)补充:使用AirtestIDE自带的查看报告功能

AirtestIDE的快捷菜单栏中,有一个查看报告的功能,使用这种方式生成的Airtest报告,会默认带上插件,无需我们特别关注。

Generating HTML log:
D:\AirtestIDE\AirtestIDE reporter D:\test\untitled.air --log_root D:/log\6fe87b11c --outfile D:\log\6fe87b11c\log.html --static_root D:\AirtestIDE\airtest\report --lang zh --plugin airtest_selenium.report poco.utils.airtest.report

5. 小结

那关于报告插件的内容就到这里啦,下次生成带有poco语句或者airtest-selenium语句的Airtest报告时,别忘了检查下是否添加了报告插件哈~


AirtestIDE下载:airtest.netease.com/

Airtest 教程官网:airtest.doc.io.netease.com/

搭建企业私有云服务:airlab.163.com/b2b


相关文章
|
7月前
|
运维 监控 安全
「译文」软件自动化发布管理的三个步骤
「译文」软件自动化发布管理的三个步骤
|
2月前
|
数据可视化 搜索推荐 BI
哪些任务进度管理器值得推荐?几款工具使用测评
在快节奏的工作环境中,任务进度管理器成为提高效率和协作的关键工具。本文介绍了三款高效实用的管理软件:板栗看板、Trello 和 Asana。这些工具不仅帮助用户更好地规划和跟踪项目进度,还能确保任务按时完成。板栗看板以其直观的看板和灵活的自定义选项受到青睐;Trello 通过丰富的插件和跨平台支持,成为全球广泛使用的工具;Asana 则以强大的功能和灵活的工作流管理,适合大型企业和复杂项目的管理需求。用户可根据自身需求选择合适的工具,提高团队协作效率,达成项目目标。
|
7月前
|
jenkins 测试技术 持续交付
Jenkins配置测试报告后无法正常显示或显示空的解决方法(问题集锦)
根据具体情况逐一排查上述问题,往往可以解决Jenkins配置测试报告无法正常显示或显示空的问题。 买CN2云服务器,免备案服务器,高防服务器,就选蓝易云。百度搜索:蓝易云
82 0
|
7月前
|
程序员
SourceCount代码统计工具使用
SourceCount代码统计工具使用
113 0
|
安全 小程序 测试技术
关于近期小程序测试的常见漏洞演示
本章节将为大家介绍一下小程序常见的漏洞的展示案例,包括支付业务逻辑漏洞、任意用户登录漏洞、水平越权漏洞等高危漏洞
|
安全 jenkins 测试技术
Jenkins配置测试报告后无法正常显示或显示空白 的解决方法(问题集锦)
Jenkins配置测试报告后无法正常显示或显示空白 的解决方法(问题集锦)
496 0
|
存储 人工智能 Java
把代码贴进去自动找bug,这个debug神器自动修复仅需几秒,还有GPT-3在线解惑
把代码贴进去自动找bug,这个debug神器自动修复仅需几秒,还有GPT-3在线解惑
176 0
|
Python
现场打脸:如何使用Selenium批量上传文件?
现场打脸:如何使用Selenium批量上传文件?
207 0
|
安全 Java Windows
漏洞PoC框架的图形版,快捷搜索PoC、一键运行Nuclei
Fiora是LoL中的无双剑姬的名字,她善于发现对手防守弱点,实现精准打击。
998 0

热门文章

最新文章