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;
}
相关推荐
qq_4337169513 小时前
测试分层:减少对全链路回归依赖的探索!
自动化测试·软件测试·功能测试·测试工具·回归·pytest·postman
开心呆哥2 天前
【Android Wi-Fi 操作命令指南】
android·python·pytest
小码哥说测试3 天前
测试分层:减少对全链路回归依赖的探索!
自动化测试·软件测试·人工智能·测试工具·appium·pytest·postman
帅得不敢出门4 天前
Python+Appium+Pytest+Allure自动化测试框架-安装篇
python·appium·自动化·pytest·测试·allure
blues_C5 天前
Pytest-Bdd-Playwright 系列教程(5):仅执行测试用例的收集阶段
自动化测试·测试用例·pytest·bdd
帅得不敢出门6 天前
Python+Appium+Pytest+Allure自动化测试框架-代码篇
python·appium·自动化·pytest·测试·allure
qq_433716958 天前
接口测试 —— Postman 变量了解一下!
自动化测试·软件测试·jmeter·单元测试·pytest·接口测试·压力测试
彳亍2618 天前
【Python单元测试】pytest框架单元测试 配置 命令行操作 测试报告 覆盖率
python·单元测试·pytest
鹿鸣悠悠8 天前
pytest脚本常用的执行命令
pytest