1、Pytest测试报告
pytest-HTML是一个插件,pytest用于生成测试结果的HTML报告。兼容Python 2.7,3.6
1、安装pytest-HTML
安装方式:pip install pytest-html
2、使用
然后写一个测试类
在命令行中执行:
py.test test_exmaple.py --html=./report.html
如下:
在当前目录下可以看到生成了一个report.html的文件,点开就可以看到测试报告啦
2、使用Pytest+Allure生成精美的测试报告
Allure是一款轻量级的开源测试报告框架。
1、安装Allure
pip install allure-pytest
allure-pytest的官方文档中详细介绍了allure-pytest所具有的功能。
2、生成测试报告
写一个测试类
3、执行生成报告
执行命令
- 运行测试用例
命令行:py.test test_exmaple.py --alluredir ./result/
代码:pytest.main(['-s','test_exmaple.py','--alluredir','./result/'])
-
生成测试报告页面
通过下面的命令将./result/目录下的测试数据生成测试报告页面:
命令行:allure generate ./result/ -o ./report/ --clean
代码:os.system('allure generate ./result/ -o ./report/ --clean')
在report文件夹下,打开index.html就可以看到比较精美的测试报告啦
3、Pytest+allure定制测试报告
在运行测试用例时候,我们可以使用注解来生成精美的测试报告
案例:
使用yaml 数据驱动 来进行自动化测试
1、case.yaml文件
#登录的测试用例
loginCase:
-
title: 登录成功的测试用例
description: 测试电商系统的登录,用户名和密码正确,登录成功
cases:
-
name: 打开登录页
method: get
url: http://www.testingedu.com.cn:8000/Home/user/login.html
-
name: 输入用户名
method: input
locator: id=username
value: 13800138006
-
name: 输入密码
method: input
locator: id=password
value: 123456
-
name: 输入验证码
method: input
locator: id=verify_code
value: 1111
-
name: 点击登录按钮
method: click
locator: name=sbtbutton
2、读取yaml文件的:readYaml.py
import yaml
datas=None
# 读取数据驱动的数据
with open('G:/自动化/autoWeb/lib/cases/case.yaml',encoding='utf-8') as f:
datas =yaml.safe_load(f)
print(datas)
3、测试用例:test_One.py
import allure
import pytest
from autoWeb.data.readYaml import datas
from autoWeb.webKeys.webkeys import *
@allure.epic("电商项目自动化")
@allure.feature("电商项目自动化-登录测试用例")
class Test_One:
# 电商项目po封装
@allure.story("打开浏览器")
def setup_class(self):
self.web = WebKeys()
self.web.open('chrome')
@allure.story("进行登录成功用例")
@pytest.mark.parametrize('listcases',datas['loginCase'])
def test_login(self,listcases):
allure.dynamic.title(listcases['title']) #获取标题
allure.dynamic.description(listcases['description']) #获取描述
testcase=listcases['cases']
for case in testcase:
listcase=list(case.values())
with allure.step(listcase[0]):
try:
func=getattr(self.web,listcase[1])
value=listcase[2:]
func(*value)
except Exception as e:
# allure.attach() #获取错误截图
pytest.fail("运行失败")
4、运行用例的runner.py
import os
import pytest
from autoWeb.data import readYaml
print(readYaml)
# 调用pytest的main函数执行测试用例
pytest.main(['-s','test_One.py','--alluredir','./result/'])
#生成allure测试报告
os.system('allure generate ./result/ -o ./report/ --clean')
运行runner.py后 可以打开我们的测试报告,就可以看到详细内容的测试报告
说明:
@pytest.mark.parametrize("参数名",列表数据)
参数名:用来接收每一项数据,并作为测试用例的参数。
列表数据:一组测试数据。