当前位置: 首页 > 知识库问答 >
问题:

如何在数据块报告下显示测试名称而不是方法名称?

钦楚青
2023-03-14

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

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

问题2:我无法在报告的“测试”列下创建测试名称为的测试。这是一条可以做到这一点的线:

测试=范围。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, "");
		}
	}
	
}

提前谢谢!!

共有3个答案

庄子平
2023-03-14

使用范围。endTest(测试) 语句正确,如下所示。这对我有用。

//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();        
    }
}
郜昊苍
2023-03-14
@Test(descritpion="Verify if the save button is enabled")

你可以用

result.getMethod().getDescription()

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

昌乐生
2023-03-14

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

对于问题2,一个更简洁的方法是添加一个BeforeMethod并在此处初始化范围测试,而不是在每个测试方法中初始化它。您可以使用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);
}
 类似资料:
  • 我正在从事一个需要以编程方式调用TestNG(使用数据提供程序)的项目。情况很好,只是在报告中,我们得到了@测试方法的名称,这是一种处理许多情况的通用方法。我们希望在报告中得到一个有意义的名字。 我一直在研究这个问题,发现了三种方法,但不幸的是,所有方法都失败了。 1) 实施ITest 我在这里和这里都发现了这个 我一输入@Test方法就设置了我想要的名称(对于我尝试的所有3种方式,这就是我设置名

  • 在TestNG框架中,我们使用TestNG套件xml文件来定义测试,并调用mvn(with-dtestset=TestNG.xml)来执行它们。在xml文件的另一边,我们有带有name值的test标记,但是这个name值似乎没有出现在Allure报告的任何地方。有没有办法让它显示在Allure报告上(更喜欢和@Feature注释在同一个地方)?

  • 我使用MsTests和数据驱动的方法进行测试。(Excel是用于测试的数据存储) 测试结果不提供任何有关测试数据的信息。例如: 结果看起来像:testname(数据行5)。我也不清楚。 如何定制输出测试结果?例如testname(测试数据(单词、数字或行名))

  • 试图理解TestNG如何连接方法名组名描述以显示在报告上。我有一个测试套件,它只在我的TestNG报告中显示方法名,但我还有其他测试套件,它们在方法名之后连接测试描述,并在报告中显示整个字符串(在类名列之后的第二列下)。我想不出是什么控制了这种差异。 有人知道这是如何工作的,以及在套件中启用/禁用吗?在这个场景中,TestNG由Maven Surefire插件执行,如您所知,该插件将电子邮件报告放

  • 我正在进行跨浏览器测试,在4种浏览器Chrome、Firefox、IE和Safari上运行多个类中的每个测试方法。 testng HTML报告 即使testng HTML报告会有浏览器名称,但与测试方法相对应也很好。 我找到了这个链接,但我只需要浏览器列旁边的方法列到自定义报告中的链接

  • 我编写这段代码是为了使用iReport 4.7.1显示一个简单的报告。 以下是我的库: commons-beanutils-1.8.0.jar commons-collections-2.1.1.jar commons-digester-2.1.jar commons-logging-1.1.1.jar jasperrreports-4.7.1.jar jasperreports-applet-4