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

时间:2019-03-29 06:38:42

标签: c# automation qa

我正在使用C#开发质量检查自动化框架。我想获取有关已通过和失败的测试用例的报告。然后,我认为扩展区报告最适合此情况,我尝试过但扩展区报告类不起作用。请帮助有正确代码的人

1 个答案:

答案 0 :(得分:0)

您需要在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);