-1

我在 Selenium - Web Automation 项目中的 Java 代码中实现了 ExtentReports API。

ExtentReports 所做的是,在运行代码后它会生成一个报告。目前它将创建的文件保存在我的项目文件夹中。

我想将报告保存在特定目录中,而不是使用“user.dir”。

例如,我想将其保存在C:\Reports 我该怎么做?

这是我目前正在使用的保存代码:

System.getProperty("user.dir") + "/test-outputExtentReports/STMExtentReport" + currTimeDate + ".html", true);
    extent.loadConfig(new File(System.getProperty("user.dir") + "\\src\\extentReports\\extent-config.xml"));

请帮助上面给定的目录。谢谢

4

2 回答 2

0
What user.dir does is it initiates the system path. If you don't won't to use system path you can just initiate the absolute path. 

Refer the sample code below:

String extentReportFile = "U:\\Reports\\"+reportName+".html";

ExtentReports extent= new ExtentReports(extentReportFile, false);

NOTE : The "U:\\Reports" is the absolute location where you want to store your reports.
于 2018-08-23T12:12:58.840 回答
0

下面是我创建报告的示例,根据您的要求进行了修改以反映将其放置在 C:\Reports 文件夹中:

ExtentHtmlReporter htmlReporter;
ExtentReports extent;
ExtentTest test;

        String storyName = this.getClass().getSimpleName();
        String storyDesc = "Calculator Test Story";

        // start reporters
        htmlReporter = new ExtentHtmlReporter("C:\\Reports\\" + storyName + ".html");
        // create ExtentReports and attach reporter(s)
        extent = new ExtentReports();
        extent.attachReporter(htmlReporter);
        // creates a toggle for the given test, adds all log events under it    
        test = extent.createTest(storyName, storyDesc); 
于 2018-02-28T15:27:19.633 回答