一、 找到allure报告的安装路径:我的是在C盘:
C:\Windows\allure-2.17.3\plugins\custom-logo-plugin\static
然后找到:下图位置 --将需要更换的图片放至这个文件夹中,名字起名为: allure_logo.jpg
二、然后修改取值文件信息:在 config位置,点击进入:
在 custom-logo-plugin ---》static ---》styles.css 文件中:
.side-nav__brand {
background: url('allure_logo.jpg') no-repeat left center !important;
margin-left: 10px;
height: 50px;
background-size: contain !important;
}
.side-nav__brand span{
display: none;
}
.side-nav__brand:after{
content: "WRMS";
margin-left: 20px;
}
三、然后点击 config ;在 打开 allure.yml 加上 - custom-logo-plugin ,保存
四、在运行allure就可以看到修改的logo和名称了。