zoukankan      html  css  js  c++  java
  • Allure自动化测试报告之修改allure测试报告logo

    1.安装allure

    2.进入

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

    3.在allure.yml添加

    - custom-logo-plugin

    如:

    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.进入

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

    5.编辑styles.css

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

    注:logo展示样式可自己调试

    6.保存,运行测试脚本,查看报告

  • 相关阅读:
    以太坊客户端geth的基本操作命令
    以太坊虚拟机介绍5-比较操作指令
    以太坊虚拟机介绍4-按位运算指令
    浏览器内核
    javascript 几个易错点记录
    jq常用方法
    jq事件操作汇总
    js事件总汇
    margin 负边距 的知识点
    子div撑不开父div的几种解决办法:
  • 原文地址:https://www.cnblogs.com/mrjade/p/11375603.html
Copyright © 2011-2022 走看看