我正在使用 selenium IDE 和 chrome 浏览器来执行自动任务。 我想知道如何截屏并保存图像seleniumIDE。 在 selenium IDE 中找不到 CaptureEntirePageScreen 命令。请帮助我。 非常感谢
我正在使用这个方法来截图
public static void getScreenshot(WebDriver driver){
File screenshot=((TakesScreenshot)driver).getScreenshotAs(OutputType.FILE);
String currentLocation=
System.getProperty("user.dir")+"/src/main/java/screenshots/";
//but you can put your location
try {
FileUtils.copyFile(screenshot,
new File(currentLocation + System.currentTimeMillis() + ".png"));
}catch (IOException e){
System.out.println("The screenshot was not taken");
e.printStackTrace();
}
}