一、allure2报告定制

# -*- 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