当前位置:   article > 正文

【如何学习Python自动化测试】—— HTMLTestRunner 生成测试报告

htmltestrunner

【如何学习Python自动化测试】系列文章目录

1.自动化测试环境搭建
  (补充)浏览器驱动的安装 以及 如何更新driver
2.页面元素定位
3.时间等待
4.浏览器操作
5.鼠标键盘操作
6.多层窗口定位
7.警告框处理
8.Cookie 处理
9.expected_conditions
10.Python 的 unittest 框架
11.HTMLTestRunner 生成测试报告


11 、HTMLTestRunner 生成测试报告

      在之前的案例中,我们完成了自动化测试的基本能力,也能完成测试的执行工作,但是还没有做到将测试的结果以报表的形式输出,接下来,在之前的测试基础上加上测试报告的输出。

11.1 HTMLTestRunner 介绍

      HTMLTestRunner是Python编程语言中的一个第三方库,它提供了一个易于使用,易于阅读和易于分享的HTML测试报告。该库适用于运行Python单元测试和集成测试,报告包括每个测试的状态,每个测试的运行时间,每个测试的失败原因等信息,并且可以将这些信息以HTML格式输出以方便查看和分享。这个库的优点是可以使测试报告易于理解,看起来更美观,帮助测试人员更准确和高效地检查测试结果。

11.2 生成测试报告

注意

  • 先安装HTMLTestRunner库: pip install HTMLTestRunner

  • HTMLTestRunner的路径必须是Python的搜索路径中,一般情况下,Python会自动搜索当前目录和Python的标准库。

  • HTMLTestRunner仅支持Python2.x,如果使用Python3.x需要安装HTMLTestRunner_PY3库。

      我们在之前的 LMD 登陆测试的脚本中先来看看 HTMLTestRunner 是如何使用的,将 login_auto.py 的内容修改如下:

#coding=utf-8
__author__ = 'Administrator'
from selenium import webdriver
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.common.by import By
from selenium.webdriver.support import expected_conditions
import time
import unittest
import HTMLTestRunner

class login_test_case(unittest.TestCase):
	def setUp(self):
		self.driver = webdriver.Firefox()
		self.driver.maximize_window()
		self.driver.get('http://www.chuangyijia.com/login')
	
	def tearDown(self):
		self.driver.quit()
		
	def test_login(self):
	
		self.driver.find_element_by_id('email').send_keys('810155067@qq.com')
		
		self.driver.find_element_by_id('pwd').send_keys('a654321')
		self.driver.find_element_by_id('submit').click()
		#self.driver.implicitly wait(5)
		time.sleep(3)
		
		WebDriverWait(self.driver,30).until(expected_conditions.visibility_of_element_located((By.CSS_SELECTOR,'.logo')))
		print self.driver.title
		is_title = expected_conditions.title_is(u'首页-创意家') 
		self.assertTrue(is_title(self.driver))
	

if __name__ == '__main__':
	suite = unittest.TestSuite()
	suite.addTest(login_test_case("test_login"))
	Report_file = u"H:\\pydj\\Lmd_auto_test\\Report\\Result.html"
	Rf = file(Report_file,'wb')
	Case_run = HTMLTestRunner.HTMLTestRunner(stream=Rf,title=u'LMD 登陆测试 ',description=u"测试报告输出")
	Case_run.run(suite)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41

上面的代码只是在原有基础上做了修改,加入了 import HTMLTestRunner 这句,还有后面的

suite = unittest.TestSuite()
创建一个测试套对象

suite.addTest(login_test_case("test_login"))
将登陆的测试用例添加到测试套中

Report_file = u"H:\\pydj\\Lmd_auto_test\\Report\\Result.html" 
设置测试报告输出的位置及文件名

Rf = file(Report_file,'wb')
使用 python 标准库 file 打开测试报告文件, wb 是以二进制写的模式打开。

Case_run=HTMLTestRunner.HTMLTestRunner(stream=Rf,title=u'LMD 登陆测试',description=u"测试报告输出")
创建一个 HTMLTestRunner 的对象,并且将上面打开的用于输出测试报 告的对象传入,title 是 html 报告页面的 title,description 对测试 报告的描述

Case_run.run(suite)
开始运行测试套
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/438014
推荐阅读
相关标签
  

闽ICP备14008679号