Pytest 测试框架与Allure 测试报告——Allure2测试报告-L4

目录:

  1. 1.allure2报告定制
    1. Allure2报告定制应用场景
    2. Allure2报告定制-页面Logo
    3. Allure2报告定制-页面标题

1.allure2报告定制

Allure2 报告定制应用场景

应用场景:针对不同的项目可能需要对测试报告展示的效果进行定制,比如修改页面的 logo、修改项目的标题或者添加一些定制的功能等等。

  1. 修改allure.yml 文件,添加 logo 插件custom-logo-plugin(在 allure 安装路径下,可以通过 where allure 或者which allure查看 allure 安装路径)。
  2. 编辑 styles.css 文件,配置 logo 图片。
bash 复制代码
/* 打开 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 报告定制-页面标题
  • 编辑 styles.css 文件,添加修改标题对应的代码。
bash 复制代码
/* 去掉图片后边 allure 文本 */
.side-nav__brand-text {
  display: none;
}
 
/* 设置logo 后面的字体样式与字体大小 */
.side-nav__brand:after {
  content: "要修改的标题";
  margin-left: 18px;
  height: 20px;
  font-family: Arial;
  font-size: 13px;
}
相关推荐
天天要nx1 天前
D102【python 接口自动化学习】- pytest进阶之fixture用法
python·pytest
程序猿000001号1 天前
探索Python的pytest库:简化单元测试的艺术
python·单元测试·pytest
爱学测试的雨果3 天前
分布式测试插件 pytest-xdist 使用详解
分布式·pytest
七灵微4 天前
【测试】Pytest
pytest
钱钱钱端4 天前
Pytest参数详解 — 基于命令行模式!
自动化测试·软件测试·python·jmeter·职场和发展·pytest·压力测试
blues_C5 天前
Pytest-Bdd vs Behave:选择最适合的 Python BDD 框架
自动化测试·python·pytest·测试框架·bdd
天天要nx6 天前
D101【python 接口自动化学习】- pytest进阶之fixture用法
python·pytest
大霞上仙6 天前
pytest入门五:命令行参数
pytest
blues_C7 天前
Pytest-Bdd-Playwright 系列教程(17):标签管理(Tags)
自动化测试·pytest·bdd·tags
大霞上仙8 天前
pytest入门十:配置文件
pytest