Jenkins+Tomcat+TestNG+ExtendReports搭建静态的HTML Report

1:准备工作

  • CentOS系统下载并安装Tomcat
  • JDK环境
  • Tomcat安装Jenkins(注意:这里不仅要安装Jenkins还要运行静态的HTML的文件 所以相当于是在一个Tomcat中运行了多个项目,参考博客:https://blog.csdn.net/dreamstar613/article/details/75282962/)
  • Jenkins.war包的下载与安装

Jenkins+Tomcat+TestNG+ExtendReports搭建静态的HTML Report_第1张图片

2:操作步骤

  • Tomcat webapps目录下创建文件夹用来存放extendreport框架生成的report HTML文件
/root/tomcat/apache-tomcat-8.5.35/webapps/test-output
  • ExtentTestNGIReporterListener监听器文件厨房路径设置为如下 ExtentTestNGIReporterListener监听器参考博客:https://blog.csdn.net/hujyhfwfh2/article/details/84950119

Jenkins+Tomcat+TestNG+ExtendReports搭建静态的HTML Report_第2张图片

  • 修改tomcat目录下的conf中的service.xml文件,修改配置
#输入ip:8080/report/index.html即可访问 
  • 启动tomcat
  • 输入http://jenkins服务器IP:8080/report 即可访问该report

Jenkins+Tomcat+TestNG+ExtendReports搭建静态的HTML Report_第3张图片

 

你可能感兴趣的:(Jenkins)