Python+selenium实战案例之htmlReport报告

HTMLReport

import HTMLTestRunner       #导入HTMLTestRunner模块
import unittest             #导入unittest测试框架
import time
listaa = "E:\\pythonTest\\IRS\\Automation\\test_run"
def createsuite1():
    testunit=unittest.TestSuite()
    discover=unittest.defaultTestLoader.discover(listaa,pattern='test_*.py',top_level_dir=None)
    for test_suite in discover:
        for test_case in test_suite:
            testunit.addTests(test_case)
            print(testunit)
    return testunit
#获取当前时间,第一个参数设置时间格式,第二个参数是得到struct_time 形式的当前时间
now = time.strftime("%Y-%m-%d %H_%M_%S",time.localtime())
filename="E:\\pythonTest\\IRS\\Automation\\report\\"+now+"_result.html"
#创测试报告的html文件,此时还是个空文件
fp=open(filename,'wb')
runner=HTMLTestRunner.HTMLTestRunner(
    stream=fp,
    title=u'搜索功能测试报告',
    description=u'用例执行情况:')
runner.run(createsuite1())
fp.close()

你可能感兴趣的:(Python+selenium实战案例之htmlReport报告)