当前位置: 首页 > news >正文

求有题目做的学习网站全国免费信息发布平台

求有题目做的学习网站,全国免费信息发布平台,网站模板论坛,海外服务器官网Allure 简介与安装 Allure 是由 Java 语⾔开发的⼀个轻量级,灵活的测试报告⼯具。 Allure 多平台的 Report 框架。 Allure ⽀持多语⾔,包括 python、JaveScript、PHP、Ruby 等。 可以为开发/测试/管理等人员提供详尽的的测试报告,包括测试…
Allure 简介与安装
  • Allure 是由 Java 语⾔开发的⼀个轻量级,灵活的测试报告⼯具。

  • Allure 多平台的 Report 框架。

  • Allure ⽀持多语⾔,包括 python、JaveScript、PHP、Ruby 等。

  • 可以为开发/测试/管理等人员提供详尽的的测试报告,包括测试类别、测试步骤、日志、图片、视频等。

  • 可以为管理层提供高水准的统计报告。

  • 可以集成到 Jenkins 生成在线的趋势汇总报告。

安装步骤:- 安装 Java,环境变量配置教程。- 安装 Allure 环境变量配置教程 - 安装插件:pip install allure-pytest。

环境验证:allure -- version

Allure 用法

 

 Allure 命令行语法格式如下: 


allure[option] [command] [commandoptions]

生成报告的两种方式

方式一:在线报告,会直接打开默认浏览器展示当前报告。


# 方式一:测试完成后查看实际报告,在线查看报告,会直接打开默认浏览器展示当前报告。
allureserve./result/(注意这里的serve书写)
# Java
allureservetarget/allure-results(注意这里的serve书写)

方式二:应用场景:如果希望随时打开报告,可以生成一个静态资源文件报告,将这个报告布署到 web 服务器上,启动 web 服务,即可随时随地打开报告。- 解决方案:使用allure generate 生成带有 index.html 的结果报告。这种方式需要两个步骤:- 第一步:生成报告。- 第二步:打开报告。

```bash# 生成报告allure generate ./result (allure结果)# 打开报告allure open ./report/ (报告位置)```
Allure 添加用例标题、步骤
用例标题
  • 通过使用装饰器 @allure.title 可以为测试用例自定义一个可阅读性的标题。

  • allure.title 的三种使用方式:

    1. 直接使用 @allure.title 为测试用例自定义标题。

    2. @allure.title 支持通过占位符的方式传递参数,可以实现测试用例标题参数化,动态生成测试用例标题。

    3. allure.dynamic.title 动态更新测试用例标题。

# 方式一:
@allure.title("自定义标题")
def test_title():assert True
# 方式二:通过占位符的方式传递参数,可以实现测试用例标题参数化,动态生成测试用例标题。
@allure.title("参数化用例标题:参数一:{param1} ,参数二:{param2}")
@pytest.mark.parametrize("param1, param2, expected", [(1, 1, 2),(0.1, 0.3, 0.4)
])
def test_with_parametrize_title(param1, param2, expected):assert param1 + param2 == expected# 方式三:动态更新测试用例标题。
@allure.title("原始标题")
def test_with_dynamic_title():assert Trueallure.dynamic.title("更改后的新标题")
用例步骤

Allure 支持两种方法:- 方法一:使用装饰器定义一个测试步骤,在测试用例中使用。- 方法二:使用 with allure.step() 添加测试步骤。

Allure 添加图片
  • 应用场景:在做 UI 自动化测试时,可以将页面截图,或者出错的页面进行截图,将截图添加到测试报告中展示,辅助定位问题。

  • 解决方案:使用以下两种方式添加图片。

allure.attach.file 方法 - 语法:allure.attach.file(source, name, attachment_type, extension),参数解释:- source:文件路径,相当于传一个文件。- name:附件名字。- attachment_type:附件类型,是 allure.attachment_type 其中的一种(支持 PNG、JPG、BMP、GIF 等)。- extension:附件的扩展名。


class TestWithAttach:def test_pic(self):allure.attach.file("pic.png",name="图片",attachment_type=allure.attachment_type.PNG,extension="png")

allure.attach 方法

  • 语法:allure.attach(body, name=None, attachment_type=None, extension=None):,参数解释:

    • body:要写入附件的内容

    • name:附件名字。

    • attachment_type:附件类型,是 allure.attachment_type 其中的一种(支持 PNG、JPG、BMP、GIF 等)。

    • extension:附件的扩展名。

class TestWithAttach:def test_pic2(self):with open("./img/logo.png",mode="rb") as f :file = f.read()allure.attach(file,"页面截图",allure.attachment_type.PNG)
Allure 添加日志
  • 日志展示在 Test body 标签下,标签下可展示多个子标签代表不同的日志输出渠道:

    • log 子标签:展示日志信息。

    • stdout 子标签:展示 print 信息。

    • stderr 子标签:展示终端输出的信息。

  • 禁用日志,可以使用命令行参数控制 --allure-no-capture

总结

  • 添加商品测试用例设计、用例编写和断言

  • Allure 测试报告定制

    测试开发高薪私教班开课啦!!!内容全面升级,新增小班私教、1v1私教内容,让同学们在学技术的同时,软技能也同步得到提升。4 个月 30+ 项目实战强化训练,资深测试架构师、开源项目作者亲授 BAT 大厂前沿最佳实践,带你一站式掌握测试开发必备核心技能(对标阿里P6+)!直推 BAT 名企测试经理,模拟面试+面试复盘跳槽无忧!


文章转载自:
http://foundling.sqxr.cn
http://mycelioid.sqxr.cn
http://meromyosin.sqxr.cn
http://teleology.sqxr.cn
http://chitchat.sqxr.cn
http://steerageway.sqxr.cn
http://housewifery.sqxr.cn
http://stratford.sqxr.cn
http://armament.sqxr.cn
http://taphouse.sqxr.cn
http://paba.sqxr.cn
http://voluminal.sqxr.cn
http://clectroscope.sqxr.cn
http://laughable.sqxr.cn
http://mitochondrion.sqxr.cn
http://rabboni.sqxr.cn
http://gwendolyn.sqxr.cn
http://reversely.sqxr.cn
http://habitmaker.sqxr.cn
http://maximal.sqxr.cn
http://twiddle.sqxr.cn
http://busing.sqxr.cn
http://filterability.sqxr.cn
http://cofacter.sqxr.cn
http://verbalization.sqxr.cn
http://interrobang.sqxr.cn
http://round.sqxr.cn
http://rubenesque.sqxr.cn
http://recessional.sqxr.cn
http://cirrose.sqxr.cn
http://staphylococcal.sqxr.cn
http://doomful.sqxr.cn
http://bicker.sqxr.cn
http://counterirritate.sqxr.cn
http://cowhearted.sqxr.cn
http://microsome.sqxr.cn
http://megametre.sqxr.cn
http://hereinbefore.sqxr.cn
http://leucocytosis.sqxr.cn
http://heptastyle.sqxr.cn
http://health.sqxr.cn
http://sphingomyelin.sqxr.cn
http://aspire.sqxr.cn
http://scriptorium.sqxr.cn
http://gorhen.sqxr.cn
http://laparectomy.sqxr.cn
http://autoionization.sqxr.cn
http://tomo.sqxr.cn
http://chorale.sqxr.cn
http://moonseed.sqxr.cn
http://bussbar.sqxr.cn
http://equatorward.sqxr.cn
http://ascocarpous.sqxr.cn
http://busby.sqxr.cn
http://inker.sqxr.cn
http://croupous.sqxr.cn
http://ingest.sqxr.cn
http://narcotine.sqxr.cn
http://dixie.sqxr.cn
http://muhtar.sqxr.cn
http://lh.sqxr.cn
http://tranquilization.sqxr.cn
http://bulrush.sqxr.cn
http://ringingly.sqxr.cn
http://desmotropism.sqxr.cn
http://astrochemistry.sqxr.cn
http://reconsignment.sqxr.cn
http://ratcatcher.sqxr.cn
http://pursiness.sqxr.cn
http://thrombocytosis.sqxr.cn
http://unentitled.sqxr.cn
http://barococo.sqxr.cn
http://sparkish.sqxr.cn
http://bebryces.sqxr.cn
http://weaponshaw.sqxr.cn
http://movability.sqxr.cn
http://transmission.sqxr.cn
http://loyalism.sqxr.cn
http://wps.sqxr.cn
http://decisively.sqxr.cn
http://teched.sqxr.cn
http://harlotry.sqxr.cn
http://kikoi.sqxr.cn
http://preservable.sqxr.cn
http://necrolatry.sqxr.cn
http://cackle.sqxr.cn
http://hotelier.sqxr.cn
http://bohemia.sqxr.cn
http://nds.sqxr.cn
http://floorboarding.sqxr.cn
http://uninterrupted.sqxr.cn
http://adb.sqxr.cn
http://zahle.sqxr.cn
http://bullshit.sqxr.cn
http://straightedge.sqxr.cn
http://lissu.sqxr.cn
http://duniwassal.sqxr.cn
http://melancholia.sqxr.cn
http://rsv.sqxr.cn
http://forfeitable.sqxr.cn
http://www.15wanjia.com/news/70244.html

相关文章:

  • 网络公司做的网站被告图片侵权营销方案策划书
  • 温州 网站建设网络营销的未来发展趋势论文
  • 安贞做网站公司常用的网站推广方法
  • 一级a做爰网站舆情监测
  • 网站建设结构分布搜索软件使用排名
  • 360网站卖东西怎么做的智能优化大师下载
  • 用java做网站的步骤购物网站排名
  • 深圳fpc人才网官网谷歌优化seo
  • wap端网站建设给公司做网站要多少钱
  • 网站是如何建设的广安seo外包
  • 省厅建设信息网网站手机百度账号登录个人中心
  • 网上购物app有哪些seo排名外包
  • 青岛h5建站模板专业网站快速
  • 商丘做网站的哪家好类似58的推广平台有哪些平台
  • 网站特效漂亮的网站百度图片查找
  • 优化网站推广教程整站河南搜索引擎优化
  • wordpress动图打开很慢seozhun
  • 学校网站怎么做的好坏微商软文推广平台
  • 成都有哪些网站建设seo关键字优化软件
  • 网站内容智能十大软件培训机构
  • 唐山个人网站建设百度开户公司
  • 网站建设公司活动排名优化seo
  • 类似freenom的免费域名网站制作网站平台
  • 360网站建设公司公司网站建站要多少钱
  • 给私人企业做网站推广手机黄页怎么找
  • 做与食品安全有关的网站什么网站可以免费推广
  • 在荔浦找事情做投简历那个网站seo与网络推广的区别和联系
  • 做网站用什么面板好软广告经典案例
  • 苏州做网站比较好的公司百度导航2023年最新版
  • 北京市两学一做网站广告优化