测试套件实例
首先准备2个.py测试用例(baidu.py和youdao.py)
baidu.py
bing.py
测试套件+HTMLTestRunner测试报告
分析:baidu.py中有2个测试用例,youdao.py中有1个用例,将这些用例通过makeSuite整合到一个测试组件中去执行
HTMLTestRunner测试报告扩展
1、在用例中添加名称注释,使得测试报告更易读
报告展示:
2、使用当前时间命名报告
time.time() 获取当前时间戳
time.localtime() 当前时间的struct_time 形式
time.ctime() 当前时间的字符串形式
time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())
生成的测试报告:
本文参考《selenium自动化实战---虫师》
网友评论