分享一个比较基础的,系统性的知识点。Python+selenium+unittest+HTMLTestReportCN单元测试框架分享
Unittest简介
unittest是Python语言的单元测试框架,在Python的官方文档中,对unittest单元测试框架进行了详细的介绍,感兴趣的读者可以到 https://www.python.org/doc/网站了解。本章重点介绍unittest单元测试框架在自动化测试中的应用。unittest 单元测试框架提供了创建测试用例、测试套件和批量执行测试用例的方案。
在python 安装成功后,unittest 单元测试框架就可以直接导入使用,它属于标准库。作为单元测试的框架,unittest 单元测试框架也是对程序的最小模块进行的一种敏捷化测试。在自动化测试中,我们虽然不需要做白盒测试,但是必须知道所使用语言的单元测试框架,这是因为当我们把Selenium2的API全部学习完后,就会遇到用例的组织问题。
虽然函数式编程和面向对象编程提供了对代码的重构,但是对于所编写的每个测试用例,不可能编写成一个函数(方法)来调用执行。利用单元测试框架,可以创建一个类,该类继承unittest 的TestCase,这样可以把每个TestCase 看成是一个最小的单元,由测试套件组织起来,运行时直接执行即可,同时可引入测试报告那么我们这里用到的报告源就是HTMLTestReportCN
HTMLTestReportCN报告样式简览
下面直接供上简约代码仅供参考
# coding=utf-8
import os, time
import unittest
# 导入HTMLTestRunner库,放在脚本的开头也是一样
import HTMLTestReportCN
from selenium import webdriver class TestAuto(unittest.TestCase):
@classmethod
def setUpClass(cls):
print('start!') cls.dr = webdriver.Chrome()
cls.dr.maximize_window()
print('测试浏览器为:{0}'.format(cls.dr.name))
time.sleep(1)
print(u'访问巡服带教测试环境后台管理系统')
cls.dr.get('http:******.cn')
print('测试地址为:{0}'.format(cls.dr.current_url))
time.sleep(1)
xpath = cls.dr.find_element_by_xpath
print(u'点击账号登录,进入账号密码待输入界面')
xpath('//*[@id="app"]/div/div[2]/div[2]/div/div[1]/div').click()
time.sleep(1)
# 捕捉账号文本栏 , 进行输入账号
xpath('//*[@id="app"]/div/div[2]/div[2]/div/form/div[1]/input').send_keys(u'***')
time.sleep(1)
# 捕捉密码文本栏 , 进行输入密码
xpath('//*[@id="app"]/div/div[2]/div[2]/div/form/div[2]/input').send_keys(u'**..')
time.sleep(1)
print(u'点击登录')
xpath('//*[@id="app"]/div/div[2]/div[2]/div/form/div[3]/input').click()
print(u'初始环境,进入下一步验证') @classmethod
def tearDownclass(cls):
print('end') def testCase_001(cls):
'''验证用户是否登录完成'''
print(u'test_001:验证巡服带教后台登录')
cls.assertEqual('http://xfdj.kt3.pagoda.com.cn/#/', cls.dr.current_url)
url = 'http://xfdj.kt3.pagoda.com.cn/#/'
if url == 'http://xfdj.kt3.pagoda.com.cn/#/':
print('..登录成功')
else:
print('..登录失败') def testCase_002(cls):
'''进入门店评分报表页面_验证门店查看明细功能'''
print(u'test_002:验证查看门店评分详情功能')
xpath = cls.dr.find_element_by_xpath
time.sleep(2)
print(u'..点击门店评分报表明细进入门店评分报表页面')
xpath('/html/body/section/section/aside/ul/li[3]/span').click()
time.sleep(1)
print(u'..刷新门店评分报表页')
cls.dr.refresh()
time.sleep(2)
print(u'..点击列表第一页,第五行门店的查看按钮,进入门店信息详情')
xpath('/html/body/section/section/section/main/div[2]/div/div/div[2]/div[2]/div[1]/div[3]/table/tbody/tr[5]/td[10]/div/button/span').click()
# 断言门店详情页面制定元素是否展示的为神秘访客 判断页面是否成功跳转到详情页
text = xpath('/html/body/section/section/section/main/div[2]/div/div/div[1]/div[1]/p[1]').text
if text == '神秘顾客':
print('..查询门店明细成功')
else:
print('..查询明细失败')
cls.assertEqual(u'神秘顾客', text) if __name__ == '__main__':
suiteTest = unittest.TestSuite()
suiteTest.addTest(TestAuto("testCase_001"))
suiteTest.addTest(TestAuto("testCase_002")) # 按照一定时间格式获取当前时间(防止测试报告覆盖)
now = time.strftime(u'%Y-%m-%d-%H-%M-%S')
# 确定生成报告的路径
report_file = "F:\\python3\\report\\" + now + "_test_report.html"
with open(report_file, 'wb') as report:
runner = HTMLTestReportCN.HTMLTestRunner(stream=report, title=u'<http://***.cn>巡服带教测试环境单元测试报告',
description=u'注:为减少时间人力成本,提高转测质量,特每次对测试环境待发布的代码会对基础功能模块进行单元测试,进一步的提高测试效率,如下为用例执行结果,请查阅!',
) runner.run(suiteTest)
report.close()