写点什么

软件测试学习笔记丨 Allure2 报告定制

作者:测试人
  • 2024-07-15
    北京
  • 本文字数:807 字

    阅读完需:约 3 分钟

本文转自测试人社区,原文链接:https://ceshiren.com/t/topic/28368

Allure2 报告定制应用场景

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

Allure2 报告定制-页面 Logo

  1. 修改 allure.yml 文件,添加 logo 插件 custom-logo-plugin(在 allure 安装路径下,可以通过 where allure 或者 which allure 查看 allure 安装路径)。

  2. 编辑 styles.css 文件,配置 logo 图片。

/* 打开 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; width: 40px; background-size: contain !important;}
复制代码

Allure2 报告定制-页面标题

编辑 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;}.side-nav__brand { background: url('logo.png') no-repeat left center !important; margin-left: 10px; height: 30px; background-size: contain !important;}/*width: 30px;*/
/* 去掉图片后边 allure 文本 */.side-nav__brand-text { display: none;}
/* 设置logo 后面的字体样式与字体大小 content: 显示的文本内容 margin-left: 距离左侧图片位置长度 height: 文本高度 font-family: 字体 font-size: 字体大小*/.side-nav__brand:after { content: "allure标题修改"; margin-left: 5px; height: 20px; font-family: Arial; font-size: 10px;}
复制代码



软件测试开发免费视频教程分享


发布于: 刚刚阅读数: 2
用户头像

测试人

关注

专注于软件测试开发 2022-08-29 加入

霍格沃兹测试开发学社,测试人社区:https://ceshiren.com/t/topic/22284

评论

发布
暂无评论
软件测试学习笔记丨Allure2报告定制_软件测试_测试人_InfoQ写作社区