サーチ…


前書き

スクリーンショットを撮って特定のパスに保存する

構文

  • ファイルsrc =((TakesScreenshot)ドライバ).getScreenshotAs(OutputType.FILE);
  • FileUtils.copyFile(src、新しいファイル( "D:\ screenshot.png"));

JAVA

スクリーンショットを取って保存するコード:

public class Sample 
{
    public static void main (String[] args) 
    {
        *//Initialize Browser*
        System.setProperty("webdriver.gecko.driver", "**E:\\path\\to\\geckodriver.exe**");
        WebDriver driver = new FirefoxDriver();
        driver.manage().window().maximize();        
        driver.get("https://www.google.com/");
        
        //Take Screesnshot
        File src = ((TakesScreenshot)driver).getScreenshotAs(OutputType.FILE);
        try {
            //Save Screenshot in destination file
            FileUtils.copyFile(src, new File("D:\\screenshot.png"));
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

スクリーンショットを取る:

File src = ((TakesScreenshot)driver).getScreenshotAs(OutputType.FILE);

店舗ソースから目的地までのスクリーンショット:

FileUtils.copyFile(src, new File("D:\\screenshot.png"));


Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow