Allure automated test report modification allure test report logo

1. Install allure

2. Enter

/usr/local/Cellar/allure/2.10.0/libexec/config

3. Add in allure.yml

- custom-logo-plugin

Such as:

plugins:

  - junit-xml-plugin
  - xunit-xml-plugin
  - trx-plugin
  - behaviors-plugin
  - packages-plugin
  - screen-diff-plugin
  - xctest-plugin
  - jira-plugin
  - xray-plugin
  - custom-logo-plugin

4. Enter

/usr/local/Cellar/allure/2.10.0/libexec/plugins/custom-logo-plugin/static

5. Edit styles.css

.side-nav__brand {
    
    
background: url('mrjadelogo.png') no-repeat left center !important;
padding-left: 180px !important;
margin-left: 10px;
}

Note: The logo display style can be debugged by yourself

6. Save, run the test script, view the report
Insert picture description here

Recommend good articles:

Software performance testing insights and summary

To what extent can I go to the interview after I learn software testing?

10 years of software testing engineers' perceptions-to friends who are still in confusion

What kind of person is suitable for software testing?

Knowledge to understand python automated testing(3)

Which is more suitable for automated testing, Python or Java?

The daily work of software testers

Play with Python+Selenium automated testing in 10 minutes, and teach you a quick start!

Finally: Welcome to follow the editor to receive a summary of the core knowledge of Python automated test engineers with a 300-page pdf document! Software testing technology exchange group: (313782132) The content of these materials are all the knowledge points that the interviewer must ask during the interview. The chapter includes many knowledge points, including basic knowledge, Linux essentials, Shell, Internet program principles, Mysql Database, package capture tool topics, interface testing tools, advanced testing-Python programming, Web automation testing, APP automation testing, interface automation testing, advanced continuous integration testing, testing architecture development testing framework, performance testing, security testing, etc.

Guess you like

Origin blog.csdn.net/weixin_50271247/article/details/108502450