一张漂亮的测试报告,相当于一张美丽的脸庞,谁都想更漂亮,对不?
HTMLTestRunner是python标准库的unittest模块的一个扩展,对应版本及下载地址如下:
python2对应下载地址:
http://tungwaiyip.info/software/HTMLTestRunner.html
python3对应下载地址:
网盘地址:https://pan.baidu.com/s/1OFtBFf-V7l5YVvF8CAX_8Q
提取码:9z4i
Windows: 将下载文件放入…\python安装路径\Lib目录下
验证方法:
python交互模式下引入HTMLTestRunner包,如果没有报错就说明添加成功。
>>>import HTMLTestRunner
>>>
下面继续以baidu.py文件为例生成HTMLTestRunner测试报告:
# coding = UTF-8
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.support.ui import Select
from selenium.common.exceptions import NoSuchElementException
import unittest,time,re,io
import HTMLTestRunner
class