如何在 Selenium IDE 中截屏并保存图像

问题描述 投票:0回答:1

我正在使用 selenium IDE 和 chrome 浏览器来执行自动任务。 我想知道如何截屏并保存图像seleniumIDE。 在 selenium IDE 中找不到 CaptureEntirePageScreen 命令。请帮助我。 非常感谢

google-chrome selenium-webdriver ide command line
1个回答
0
投票

我正在使用这个方法来截图

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();
    }

}
© www.soinside.com 2019 - 2024. All rights reserved.