1.下载BeautifulReport模块

下载地址:https://github.com/TesterlifeRaymond/BeautifulReport

2.解压与存放路径

下载BeautifulReport的完整.ZIP文件,然后解压,把整个文件包放到本地python的/Lib/site-packages/目录下

unittest框架,漂亮的报告BeautifulReport配置与错误截图详细解说-LMLPHP

可能出现的错误,可以参考地址:https://blog.csdn.net/chenmozhe22/article/details/82888060

3.例子(web操作)

目录如下:

unittest框架,漂亮的报告BeautifulReport配置与错误截图详细解说-LMLPHP

以下是Test_1.py文件代码:

 import unittest,time,os
from selenium import webdriver
from BeautifulReport import BeautifulReport
from selenium.webdriver.common.action_chains import ActionChains
from selenium.webdriver.support.wait import WebDriverWait
from selenium.webdriver.common.by import By
from selenium.webdriver.support import expected_conditions as EC
class Test_01(unittest.TestCase):
def save_img(self, img_name): #错误截图方法,这个必须先定义好
"""
传入一个img_name, 并存储到默认的文件路径下
:param img_name:
:return:
"""
self.driver.get_screenshot_as_file('{}/{}.png'.format(os.path.abspath(r"G:\student_project\Hao\img"), img_name)) #os.path.abspath(r"G:\Test_Project\img")截图存放路径
def setUp(self):
print("开始测试")
self.driver = webdriver.Chrome()
self.driver.maximize_window()
self.driver.get("https://www.baidu.com/")
def tearDown(self):
print("结束测试")
self.driver.close() @BeautifulReport.add_test_img('test_case_1') #装饰器,当你没有报错也要截图的话,那么你需要在用例里面调用save_img()方法
def test_case_1(self): #用例没有错截图示例
WebDriverWait(self.driver,10).until(EC.visibility_of_element_located((By.XPATH,"//div[@id='u1']/a[@name='tj_settingicon' and @class='pf']")))
ele=self.driver.find_element_by_xpath("//div[@id='u1']/a[@name='tj_settingicon' and @class='pf']")
ActionChains(self.driver).move_to_element(ele).perform()
self.driver.find_element_by_xpath('//a[@class="setpref"]').click()
WebDriverWait(self.driver, 10).until(
EC.visibility_of_element_located((By.XPATH, '//a[text()="保存设置"]')))
text_data=self.driver.find_element_by_xpath('//a[text()="保存设置"]').text
self.save_img("test_case_1") #没有报错也要截图的话,直接在这里调用方法就行了
self.assertEqual("保存设置",text_data)
@BeautifulReport.add_test_img('test_case_2') #装饰器,当你用例错误了,那么会自动调用save_img截图方法,存到指定目录下
def test_case_2(self): #用例错误截图示例
time.sleep(1)
text_data = self.driver.find_element_by_xpath('//div[@id="u1"]/a').text
self.assertEqual("新闻1", text_data)

注意:如果想正确的用例也截图,那么你可以在用例上面添加装饰器,然后在用例里面调用save_img()方法就行了

以下是run.py文件代码:

 import unittest,time,os
from BeautifulReport import BeautifulReport
from Test_Case import Test_1
current_path = os.getcwd()
report_path = os.path.join(current_path, "Report")
now = time.strftime("%Y-%m-%d %H-%M-%S", time.localtime(time.time()))
# 报告地址&名称
report_title = 'Example报告' + now + ".html" # 如果不能打开这个文件,可能是now的格式,不支持:和空格
if __name__ == '__main__':
suite = unittest.TestSuite()
loader=unittest.TestLoader()
suite.addTests(loader.loadTestsFromModule(Test_1))
#运行用例filename=报告名称,description=所有用例总的名称,report_path=报告路径,如果不填写默认当前执行文件目录,theme=报告的主题,有四种可以选择:theme_default,theme_cyan,theme_candy,theme_memories 默认是第一种
BeautifulReport(suite).report(filename="测试报告", description='Test_01模块',report_dir=report_path,theme="theme_cyan")

4.报告展示

说明:生成报告原理:他是读取了D:\python3.7.1\Lib\site-packages\BeautifulReport\template路径下面的theme_default.json基础数据,在读取template.html的数据,然后在写入你运行用例后的结果+body到报告里面去,就生成了报告

unittest框架,漂亮的报告BeautifulReport配置与错误截图详细解说-LMLPHP

unittest框架,漂亮的报告BeautifulReport配置与错误截图详细解说-LMLPHP

05-22 11:22