注意:文件格式
一:查看html测试报告,如下图:
二:部分源码
filename = "E:/pythonProject/report/login_report.html" # 测试报告的存放路径及文件名 fp = open(filename, "w") # 创建HTML格式的测试报告文件,此时还是个空文件,可用于写入文本 runner = HTMLTestRunner.HTMLTestRunner(stream=fp, title="login测试报告", description="登录测试")
# stream = fp 引用文件流 # title 测试报告标题 # description 报告说明与描述 runner.run(suit)
三:解决方法
filename = "E:/pythonProject/report/login_report.html" # 测试报告的存放路径及文件名 # 输出保存前,指明编码格式即可 with open(filename, "w", encoding="utf-8") as fp: runner = HTMLTestRunner.HTMLTestRunner(stream=fp, title="login测试报告", description="登录测试") runner.run(suit)