Python3.8+Pytest+Allure单元测试框架搭建

    TestNG报告太丑? 测试结果维度展现有限? 无法区分用例优先级? 不方便查看错误信息?

    Allure测试报告框架帮助你轻松实现”高大上”报告展示。本文通过示例演示如何从0到1集成Allure测试框架。重点展示了如何将Allure集成到已有的自动化测试工程中、以及如何实现报表的优化展示。Allure非常强大,支持多种语言多种测试框架,无论是Java/Python还是Junit/TestNG,其他语言或者框架实现的流程和本文一致,具体配置参照各语言框架规范

    最近刚学习了如何用Python3.8+selenium+Pytest搭建单元测试框架,并使用allure测试报告工具生成炫酷的测试报告,因此记录一下,巩固知识的同时,也分享给大家,有用自取!

一、环境搭建

1.python官网下载最新版python,安装过程百度很详细,这里不做赘述。python官网地址:https://www.python.org/

2.安装第三方包,pytest,PyYAML,selenium,allure-pytest插件。

第三方库下载地址:https://pypi.org/

3.进入Allure官网http://allure.qatools.ru/ ,点击右上角DownLoad进入下载页面,下载zip文件。安装allure,下载后解压,配置好环境变量。


二、编写代码

# -*- coding:utf-8 -*-

# @File:test_toss_demo1.py

from selenium import webdriver

import allure

import pytest

import yaml

from selenium.webdriver.common.by import By

class TestToss1():

    @allure.feature("初始化工作")

    def setup(self):

        self.driver = webdriver.Chrome()

        with allure.step("打开toss登录地址"):

            self.driver.get("https://baidu.com..cn/login")

        with allure.step("最大化浏览器"):

            self.driver.maximize_window()

            self.driver.implicitly_wait(5)

    @allure.feature("资源清理,关闭浏览器")

    def teardown(self):

        self.driver.quit()

    @allure.feature("toss登录功能模块")

    @allure.testcase("http://baidu.com.cn/board/")

    @pytest.mark.parametrize(["username", "password"], yaml.safe_load(open('./data.yml')))

    def test_toss_login_demo(self, username, password):

        with allure.step(f"输入账号:{username},密码:{password}"):

            self.driver.find_element(By.ID, 'username').send_keys(username)

            self.driver.find_element(By.ID, 'password').send_keys(password)

        with allure.step("点击登录按钮"):

            self.driver.find_element(By.ID, 'loginButton').click()

        with allure.step("保存图片"):

            self.driver.save_screenshot("./result/login.png")

            allure.attach.file("./result/login.png", attachment_type=allure.attachment_type.PNG)

data.yml是测试数据,YAML 是专门用来写配置文件的语言,非常简洁和强大,远比 JSON 格式方便。如下:

-username

-password

Python3.8+Pytest+Allure单元测试框架搭建_第1张图片

YAML基本语法规则:

·大小写敏感

·使用缩进表示层级关系

·缩进时不允许使用Tab键,只允许使用空格。

·缩进的空格数目不重要,只要相同层级的元素左侧对齐即可

·#表示注释,从这个字符一直到行尾,都会被解析器忽略,这个和python的注释一样


三、使用pytest执行测试,用allure生成测试报告

1.到对应的python文件所在目录执行命令:pytest -v -s test_toss_demo1.py --alluredir=./report/1

结果如图:

Python3.8+Pytest+Allure单元测试框架搭建_第2张图片


Python3.8+Pytest+Allure单元测试框架搭建_第3张图片

运行完毕以后会默认生成allure-results文件夹,并在其中保存测试数据(json格式的测试数据)


2.运行Allure服务生成美化后的测试报告,切换到工程根目录下,执行命令:allure serve ./report/1,会自动打开allure测试报告。在浏览器中输入http://10.255.6.35:57135/index.html 即可查看测试报告。


Python3.8+Pytest+Allure单元测试框架搭建_第4张图片

测试报告解析

    总览/图表页面 中查看测试概况:包含测试用例数,测试通过率,测试Defect,不同优先级测试用例的情况,测试执行耗时,测试套件数,测试的场景分类。其中测试场景由自动化代码中@Epic的标识,优先级由@Severity标识。

你可能感兴趣的:(Python3.8+Pytest+Allure单元测试框架搭建)