如何在范围报告而不是方法名称下显示测试名称?

use*_*019 3 testng selenium selenium-webdriver selenium-extent-report extentreports

在范围报告中,我想显示测试名称而不是方法名称。于是找到了解决办法,为@Test注解添加了一个test name属性

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

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

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++)
			 
		{
		 
Run Code Online (Sandbox Code Playgroud)

我的范围报告代码:

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, "");
		}
	}
	
}
Run Code Online (Sandbox Code Playgroud)

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

提前致谢!!

Har*_*ish 5

对于问题 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);
}
Run Code Online (Sandbox Code Playgroud)