如何使用更新的 类 为 POM QA 自动化框架生成范围报告?

How to generate an extent report for POM QA automation framework with updated classes?

我正在使用 C# 中的页面对象模型开发 QA 自动化框架。我想获得有关通过和失败测试用例的报告。我认为 Extent Reports 最适合这个,我尝试 运行 它,但是范围报告 类 不起作用。如何将 Extent Reports 集成到我的 POM 中?

您需要在 POM.XML

中添加依赖项
<dependency>
  <groupId>com.aventstack</groupId>
  <artifactId>extentreports</artifactId>
  <version>3.1.5</version>
</dependency>

使用以下代码设置报告:

ExtentHtmlReporter report=new ExtentHtmlReporter(path);
extentReport=new ExtentReports();
extentReport.attachReporter(report);