我在 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"));
请帮助上面给定的目录。谢谢