微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Pytest系列21- allure的特性,@allure.description()、@allure.title()的详细使用

如果你还想从头学起Pytest,可以看看这个系列的文章哦!

https://www.cnblogs.com/poloyy/category/1690628.html

 

前言

上一篇文章介绍了两种allure的特性

  • @allure.step() 装饰器:可以设置测试步骤,让测试用例的执行过程更加详细
  • allure.attach() 函数可以设置需要显示在allure报告的附件,包含了多种类型,可以通过allure.attachment_type查看支持的类型

这一篇幅,我们主要来讲解另外两个特性,可以增加报告的可读性哦!

  • @allure.description()
  • @allure.title()

它们用法极其相近,只是作用不一样而已

 

@allure.description()

作用

可以添加足够详细的测试用例描述,以便于管理层查看哦哈哈哈

 

语法格式,有三种

  1. @allure.description(str)
  2. 在测试用例函数声明下方添加 """ """
  3. @allure.description_html(str):相当于传一个HTML代码组成的字符串,类似 allure.attach() 中传HTML

注意:方式一方式二的效果和作用是一致的, 哪个方便哪个来

#!/usr/bin/env python
# -*- coding: utf-8 -*-

"""
__title__  =
__Time__   = 2020-04-18 15:24
__Author__ = 小菠萝测试笔记
__Blog__   = https://www.cnblogs.com/poloyy/
"""

import allure

 方式一
@allure.description(
这是一个@allure.description装饰器
没有特别的用处
""")
def test_description_from_decorator():
    assert 42 == int(6 * 7)

 方式二
 test_unicode_in_docstring_description():
    
    当然,在方法声明的下一行这样子写,也算一种添加description的方式哦
    """
     方式三
@allure.description_html(
<h1>Test with some complicated html description</h1>
<table style="width:100%">
  <tr>
    <th>Firstname</th>
    <th>Lastname</th>
  </tr>
  <tr align="center">
    <td>William</td>
    <td>Smith</td>
</table>
 test_html_description():
    assert True

 

方式一的allure报告

 

方式二的allure报告

 

方式三的allure报告

 

@allure.title()

作用

 

具体栗子一


__title__  =
__Time__   = 2020-04-18 16:09
__Author__ = 小菠萝测试笔记
__Blog__   = https://www.cnblogs.com/poloyy/
 pytest,allure


@allure.title("前置操作:登录")
@pytest.fixture
 test_loginss(request):
    params = request.param
    name = params[username]
    pwd = params[pwd]
    allure.attach(f这是测试用例传的参数{params})
    print(name,pwd,params)
    yield name,pwd


@allure.title(成功登录,测试数据是:{test_loginss})
@pytest.mark.parametrize(test_loginss,[
    {": name1",pwd1},{name2pwd2"}],indirect=True)
 test_success_login(test_loginss):
    name,pwd = test_loginss
    allure.attach(f账号{name},密码{pwd}")

 

运行结果,查看allure报告

这是一次综合多个之前学到的方法来完成的栗子,已经具体标出来啦!

 

具体栗子二

@allure.title(多个参数{name},{phone},{age}name,phone,age),(4,5,6)
])
 test_test_test(name,age):
    print(name,age)

 

运行结果,查看allure报告

 

总结

如果没有添加 @allure.title() 的话,测试用例的标题认就是函数名,这样的可读性不高,毕竟咱们是中国人,显示中文title还是很有必要的~所以墙裂建议大伙儿加上啦!

 

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐