我不明白为什么我的屏幕截图没有出现在本地的 ExtentReport 中(我还没有从构建服务器尝试过)。这是调用 takeScreenShot 方法的 TestNG @AfterMethod:-
@AfterMethod
public void afterMethod(ITestResult result) throws IOException {
APPLICATION_LOGS.debug("Running @AfterMethod");
switch (result.getStatus()) {
case ITestResult.FAILURE:
childTest.fail(result.getThrowable())
.addScreenCaptureFromPath((takeScreenShot(result.getMethod().getMethodName())));
try {
childTest.info("<a href='https://mywebsite.com/fabrix/logs/s/" + webSessionId + "'" + "target=_'blank'>Data control logs</a>");
} catch (Exception e) {
childTest.info("Unable to get Session ID");
}//.....more code
这是被调用的方法:
private String takeScreenShot(String methodName) {
String path = System.getProperty("user.dir") + "\\target\\reports\\screenshots\\" + methodName + ".png";
try {
File screenshotFile = ((TakesScreenshot) driver).getScreenshotAs(OutputType.FILE);
FileUtils.copyFile(screenshotFile, new File(path));
} catch (Exception e) {
APPLICATION_LOGS.error("Could not write screenshot" + e);
}
return path;
}
和报告:
[![在此处输入图像描述][1]][1]
我使用 Chrome 开发人员工具检查图像,路径完美,图像保存在与报告相同的目录中。那为什么不显示呢?
来自 IntelliJ: