如何在 Extent Report 下显示测试名称而不是方法名称?

How to display test name under Extent Report instead of Method Name?

在Extent Report中,我想显示测试名称而不是方法名称。 所以我找到了一个解决方案,为@Test注解添加了一个测试名称属性

问题 1:在报告中我看到 getTestName 方法返回 null。

问题 2:我无法使用测试名称在报告的 'Tests' 列下创建测试。 这是执行此操作的行:

test = extent.createTest(Thread.currentThread().getStackTrace()1.getMethodName().toString());

我已经添加了我的测试用例和范围报告代码。请提出建议。

/*============================================================================================================================

  Test case : Verify if the save button is enabled on giving a comparison name in the save comparison form 
    ======================================================================================*/
 
 
 
  @Test(testName ="Verify if the save button is enabled")
  public void verifySaveButtonEnabled() {
   
     //test = extent.createTest(Thread.currentThread().getStackTrace()[1].getMethodName());
    test = extent.createTest(Thread.currentThread().getStackTrace()[1].getMethodName().toString());
      Base.getBrowser();
  InvestmentsSearch.login(Base.driver);
  InvestmentsSearch.InvestmentsLink(Base.driver).click();
  JavascriptExecutor jse = (JavascriptExecutor)Base.driver;
  jse.executeScript("window.scrollBy(0,750)", "");
  InvestmentsSearch.ViewResults(Base.driver).click();
  for(int i=0;i<=2;i++)
    
  {
   

我的范围报告代码:

package com.gale.precision.FundVisualizer.core;

import java.io.IOException;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Date;

import org.openqa.selenium.JavascriptExecutor;
import org.openqa.selenium.WebElement;
import org.testng.ITestContext;
import org.testng.ITestResult;
import org.testng.annotations.AfterMethod;
import org.testng.annotations.AfterSuite;
import org.testng.annotations.BeforeSuite;

import com.aventstack.extentreports.ExtentReports;
import com.aventstack.extentreports.ExtentTest;
import com.aventstack.extentreports.Status;
import com.aventstack.extentreports.markuputils.ExtentColor;
import com.aventstack.extentreports.markuputils.MarkupHelper;
import com.aventstack.extentreports.reporter.ExtentHtmlReporter;
import com.aventstack.extentreports.reporter.configuration.ChartLocation;
import com.aventstack.extentreports.reporter.configuration.Theme;
import com.gale.precision.FundVisualizer.utility.SendEmail;

public class ExtentReport {
 public static ExtentHtmlReporter htmlReporter;
 public static ExtentReports extent;
 public static ExtentTest test;
 public static String suiteName;

 @BeforeSuite
 public static void setUp(ITestContext ctx) {

  // String currentDate=getDateTime();
  suiteName = ctx.getCurrentXmlTest().getSuite().getName();
  htmlReporter = new ExtentHtmlReporter(System.getProperty("user.dir") + "/Reports/" + suiteName + ".html");
  extent = new ExtentReports();
  extent.attachReporter(htmlReporter);

  extent.setSystemInfo("OS", "Windows");
  extent.setSystemInfo("Host Name", "CI");
  extent.setSystemInfo("Environment", "QA");
  extent.setSystemInfo("User Name", "QA_User");

  htmlReporter.config().setChartVisibilityOnOpen(true);
  htmlReporter.config().setDocumentTitle("AutomationTesting Report");
  htmlReporter.config().setReportName("testReport");
  htmlReporter.config().setTestViewChartLocation(ChartLocation.TOP);
  htmlReporter.config().setTheme(Theme.STANDARD);
 }

 @AfterMethod
 public void getResult(ITestResult result) throws IOException {
  if (result.getStatus() == ITestResult.FAILURE) {
   String screenShotPath = GetScreenShot.capture(Base.driver, "screenShotName", result);
   test.log(Status.FAIL, MarkupHelper.createLabel(result.getTestName() + " Test case FAILED due to below issues:",
     ExtentColor.RED));
   test.fail(result.getThrowable());
   test.fail("Snapshot below: " + test.addScreenCaptureFromPath(screenShotPath));
  } else if (result.getStatus() == ITestResult.SUCCESS) {
   test.log(Status.PASS, MarkupHelper.createLabel(result.getTestName() + " Test Case PASSED", ExtentColor.GREEN));
  } else {
   test.log(Status.SKIP,
     MarkupHelper.createLabel(result.getTestName()+ " Test Case SKIPPED", ExtentColor.ORANGE));
   test.skip(result.getThrowable());
  }
  extent.flush();
 }

 @AfterSuite 
 public void tearDown() throws Exception {
  System.out.println("In After Suite");
  SendEmail.execute(SendEmail.path);
 }

 public static String getDateTime() {

  // Create object of SimpleDateFormat class and decide the format
  DateFormat dateFormat = new SimpleDateFormat("MM/dd/yyyy HH:mm:ss");

  // get current date time with Date()
  Date date = new Date();

  // Now format the date
  String currentDate = dateFormat.format(date);

  String newDate = currentDate.replace('/', '_');
  String newCurrentDate = newDate.replace(':', '.');
  return newCurrentDate;

 }
 public void elementHighlight(WebElement element) {
  for (int i = 0; i < 2; i++) {
   JavascriptExecutor js = (JavascriptExecutor) Base.driver;
   js.executeScript(
     "arguments[0].setAttribute('style', arguments[1]);",
     element, "color: red; border: 3px solid red;");
   js.executeScript(
     "arguments[0].setAttribute('style', arguments[1]);",
     element, "");
  }
 }
 
}

我想在所选区域的报告中显示测试名称。请参考图片

提前致谢!!

对于问题 1,您应该使用 result.getMethod().getMethodName() 获取测试方法名称。

对于问题 2,更简洁的方法是添加一个 BeforeMethod 并在此处初始化 Extent 测试,而不是在每个测试方法中都对其进行初始化。您可以使用 BeforeMethod 中的以下技术获取测试名称或任何其他注释值:

@BeforeMethod
public void setup(Method method) {
    String testMethodName = method.getName(); //This will be:verifySaveButtonEnabled
    String descriptiveTestName = method.getAnnotation(Test.class).testName(); //This will be: 'Verify if the save button is enabled'
    test = extent.createTest(descriptiveTestName);
}
@Test(descritpion="Verify if the save button is enabled")

你可以使用

result.getMethod().getDescription()

您必须初始化 ITestResult 结果,否则您可以在 Listeners 中使用这些方法 class

正确使用extent.endTest(test);语句如下所示。它对我有用。

//Testng to listen to this extent reports.
public class ExtentReporterNG implements IReporter {
    private ExtentReports extent;

    public void generateReport(List<XmlSuite> xmlSuites, List<ISuite> suites, String outputDirectory) {
        extent = new ExtentReports(outputDirectory + File.separator + "ExtentReportsTestNG.html", true);

        for (ISuite suite : suites) {
            Map<String, ISuiteResult> result = suite.getResults();

            for (ISuiteResult r : result.values()) {
                ITestContext context = r.getTestContext();

                buildTestNodes(context.getPassedTests(), LogStatus.PASS);
                buildTestNodes(context.getFailedTests(), LogStatus.FAIL);
                buildTestNodes(context.getSkippedTests(), LogStatus.SKIP);
            }
        }

        extent.flush();
        extent.close();
    }

    private void buildTestNodes(IResultMap tests, LogStatus status) {
        ExtentTest test;

        if (tests.size() > 0) {
            for (ITestResult result : tests.getAllResults()) {
                test = extent.startTest(result.getMethod().getMethodName());


                for (String group : result.getMethod().getGroups())
                    test.assignCategory(group);

                String message = "Test " + status.toString().toLowerCase() + "ed";

                if (result.getThrowable() != null){
                    message = result.getThrowable().getMessage();
                }else{
                test.log(status, message);
                extent.endTest(test);
                }

                test.setStartedTime(getTime(result.getStartMillis()));
                test.setEndedTime(getTime(result.getEndMillis()));

            }
        }
    }

    private Date getTime(long millis) {
        Calendar calendar = Calendar.getInstance();
        calendar.setTimeInMillis(millis);
        return calendar.getTime();        
    }
}