ui自动化,测试套件,生成测试报告部分代码

Posted tingting-yang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ui自动化,测试套件,生成测试报告部分代码相关的知识,希望对你有一定的参考价值。

import htmlTestRunner
import unittest
import os
# 1. 完成使用discover()方法构造套件的方法

if __name__ == ‘__main__‘:
current_path = os.path.dirname(__file__)
testcase_path = os.path.join(current_path, ‘testcase‘)
discover = unittest.defaultTestLoader.discover(testcase_path,pattern="test*.py",top_level_dir=None)
suits = unittest.TestSuite()
suits.addTest(discover)
unittest.main(defaultTest=‘suits‘)

# 2. 掌握:HTMLTestRunner 生产报告的方法
if __name__ == ‘__main__‘:
current_path = os.path.dirname(__file__)
testcase_path = os.path.join(current_path, ‘testcase‘)
discover = unittest.defaultTestLoader.discover(testcase_path,pattern="test*.py",top_level_dir=None)
suits = unittest.TestSuite()
suits.addTest(discover)
report_path = ‘report‘+time.strftime(‘%Y_%m_%d_%H_%M_%S‘)+‘.html‘
fp = open(report_path,‘wb‘)
runner = HTMLTestRunner.HTMLTestRunner(stream=fp,title=‘自动化测试报告‘,description=‘执行测试用例测试报告‘)
runner.run(suits)

以上是关于ui自动化,测试套件,生成测试报告部分代码的主要内容,如果未能解决你的问题,请参考以下文章

HttpRunner六:创建run.py文件,执行套件并生成测试报告

Pytest 可视化测试报告之 Allure

python搭配selenium,htmltestrunner实现自动化测试 —— (测试思路和基础步骤)

听了学长一席话:原来在Unittest框架中,生成测试报告这么简单

google action的测试套件中执行和查询意图的错误报告

基于APPIUM测试微信公众号的UI自动化测试框架(结合Allure2测试报告框架)