【发布时间】:2019-10-11 07:50:14
【问题描述】:
我正在尝试创建范围报告版本 v4.0.9 但无法这样做。 下面的代码是我写给 setUp 类的,它具有所有 before 方法和 aftermethos,并且同一个类扩展到我正在执行测试的 Utilities 类。
这是设置类的代码
public class AIG_SetUp {
protected static ExtentLoggerReporter logger;
protected static ExtentReports extent;
protected static ExtentTest log;
@BeforeTest(alwaysRun = true)
public void starttest() {
logger = new ExtentLoggerReporter(System.getProperty("user.dir"));
extent = new ExtentReports();
extent.attachReporter(logger);
System.err.close(); // written to remove JAVA 9 incompatibility.. continued below
System.setErr(System.out); // continue.. and remove the warnings
extent.setSystemInfo("User Name" , "Sobhit");
}
@AfterMethod(alwaysRun = true)
public void endReport(ITestResult result) {
try {
if (result.getStatus() == ITestResult.FAILURE) {
log.log(Status.FAIL , "Test cases Failed" + result.getName());
log.log(Status.FAIL , "Test cases Failed" + result.getThrowable());
} else if (result.getStatus() == ITestResult.SKIP) {
log.log(Status.SKIP , "Test case skipped is" + result.getName());
}
} catch (Exception e) {
e.printStackTrace();
}
}
@AfterTest(alwaysRun = true)
public void endReport() {
extent.flush();
}
}
这里是扩展到上述类的实用程序类。
public class UtilitiesOps extends AIG_SetUp {
@Test(groups = {"Core-Smoke"}, description = "List all media types")
public void Verify_List_all_media_types() {
extent.attachReporter(logger);
extent = new ExtentReports();
log = extent.createTest("List all media types");
log.assignCategory("Utilities Operations");
}
需要提及的几个要点 现在我没有收到错误,在我收到空指针异常但现在没有错误之前。 此外,代码运行良好,但没有生成范围报告。 如果我把所有东西都放在一个类中,没有之前的测试和东西,就可以创建报告。不知道为什么会出错。
非常感谢您的帮助。
【问题讨论】:
标签: java extentreports selenium-extent-report extent