获取@BeforeSuite注释中的类名 - TestNG - Java

时间:2016-08-17 15:32:54

标签: java selenium-webdriver testng

有没有办法在不通过xml文件执行时从@BeforeSuite注释中获取脚本的类名?

这样做:

reportName = new Exception().getStackTrace()[0].getClassName();

返回包含@BeforeSuite注释的类本身,并且:

reportName = new Exception().getStackTrace()[1].getClassName();

返回sun.reflect.NativeMethodAccessorlmpl

如果我直接从一个单独的类执行脚本,我想获取该信息,因为我使用它来命名我的扩展报告文件名。

如果您想知道@BeforeSuite注释中的代码是什么样的:

// Set Extent Report file name from the global properties file
String reportName = ctx.getCurrentXmlTest().getSuite().getName();
if (reportName.equals("Default suite"))
{
    reportName = new Exception().getStackTrace()[0].getClassName();
}
String timeStamp = new SimpleDateFormat("HH.mm.ss").format(new Date());

// Initialize Extent Reports and modify the looks/output
String extentReportPath = "";
if (extent == null) {
    if (os.equals("Mac"))
    {
        extentReportPath = reportPath + "/" + project + "-" + reportName + "-" + environment + "-" + browser + "-" + timeStamp + ".html";
    }
    else if (os.equals("Windows"))
    {
        extentReportPath = reportPath + "\\" + project + "-" + reportName + "-" + environment + "-" + browser + "-" + timeStamp + ".html";
    }

    // Start new report
    extent = new ExtentReports(extentReportPath, true);
}

还有更多内容,但这是与我的问题相关的部分。

--- --- UPDATE

这是我的解决方案:

// Set Extent Report file name from the global properties file
String reportName = ctx.getCurrentXmlTest().getSuite().getName();
if (reportName.equals("Default suite"))
{
    List<ITestNGMethod> allMethods = ctx.getSuite().getAllMethods();
    for (ITestNGMethod method : allMethods)
    {
        String fullMethod = method.toString();
        int indexOf = fullMethod.indexOf(".");
        reportName = fullMethod.replace(fullMethod.substring(indexOf), "");             }
}

1 个答案:

答案 0 :(得分:1)

您可以将参数ITestContext传递给beforesuite方法。 testNG会自动注入它。这应该包含您要查找的信息。

context.getSuite()。getAllMethods - &gt; TestNGMethods.getRealClass()或getTestClass()的列表。