# -*- coding: utf-8 -*-
# @Time : 2023/7/10 21:14
# @Author : yanfa
# @user : yanfa
# @File : test_attach_for_report_customization.py
# @remark: 报告定制
""""""
"""
一、Allure2 报告定制应用场景
应用场景:针对不同的项目可能需要对测试报告展示的效果进行定制
比如修改页面的logo、修改项目标题、或者添加一些定制的功能等等
二、Allure2 报告定制-页面 Logo
1、修改allure.yml文件,添加logo插件custom-logo-plugin
(在allure安装路径下,可以通过win-【where allure】或者mac-【which allure】查看allure安装路径)
【注意:使用brew安装,默认路径opt/homebrew/Celler/allure/2.22.4 下面有2个目录 bin-执行文件,libexec-bin/config/lib/plugins】
打开config下allure.yml最下面添加 -custom-logo-plugin
2、编辑styles.css文件,配置logo图片
进入libexec/plugins/custom-logo-plugin/static目录找到styles.css打开
将封面图片放在static目录下,替换下面内容,替换为新文件名
/* 打开 styles.css 文件,
目录在:/xxx/allure-2.13.2/plugins/custom-logo-plugin/static/styles.css,
将内容修改为:*/
.side-nav__brand {
background: url("logo.png") no-repeat left center !important;
margin-left: 10px;
height: 40px;
background-size: contain !important;
}
三、Allure2 报告定制-页面 Logo
编辑 styles.css 文件,添加修改标题对应的代码。
/* 去掉图片后边 allure 文本 */
.side-nav__brand-text {
display: none;
}
/* 设置logo 后面的字体样式与字体大小 */
.side-nav__brand:after {
content: "疯子李";
margin-left: 18px;
height: 20px;
font-family: Arial;
font-size: 13px;
}
"""
def test_case():
pass
python接口自动化-allure2-报告定制
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 一、Pytest 介绍 1、基于 python 的单元测试框架 主流的接口测试框架有: python:pytest...
- 本文首发于:行者AI[https://xingzheai.cn/details/e9958cbc3b8] 在用py...
- 日常工作中,你是否遇到以下情形: 想要第一时间获悉竞品app的最新版本的更新内容 想要监测行业最新资讯,并与同事分...