【selenium学习中级篇 -26】HTMLTestRunner生成测试报告
2021-02-13 04:16
标签:Suite path 使用 time() desc pytho str dir localtime 新建文件夹test_report,在网上下载HTMLTestRunner.py文件放在Utils包中 注意,如果你使用的是python 3.x的话,HTMLTestRunner.py文件也需要用python 3.x的 接下来,我们改造TestRunner文件 运行文件后,可以在test_report目录下,找到对应的测试报告文件 【selenium学习中级篇 -26】HTMLTestRunner生成测试报告 标签:Suite path 使用 time() desc pytho str dir localtime 原文地址:https://www.cnblogs.com/ronyjay/p/13024238.html# coding=utf-8
import unittest
import Utils.HTMLTestRunner
import os
import time
#设置报告文件保存路径
report_path = os.path.dirname(os.path.abspath(‘.‘))+‘/test_report/‘
# 获取系统当前时间
now = time.strftime("%Y-%m-%d-%H_%M_%S", time.localtime(time.time()))
#设置报告名称格式
HtmlFile = report_path +now +"_TestReport.html"
fp=open(HtmlFile,"wb")
suite = unittest.TestLoader().discover("TestSuites")
if __name__ == ‘__main__‘:
runner = Utils.HTMLTestRunner.HTMLTestRunner(stream=fp,title="测试报告",description="用例情况")
runner.run(suite)
文章标题:【selenium学习中级篇 -26】HTMLTestRunner生成测试报告
文章链接:http://soscw.com/index.php/essay/54731.html