Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@seleniumgists
Created January 11, 2019 11:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save seleniumgists/ac6e46e7231261160c944faac8af5117 to your computer and use it in GitHub Desktop.
Save seleniumgists/ac6e46e7231261160c944faac8af5117 to your computer and use it in GitHub Desktop.
generated automatically from #selenium on seleniumhq slack
public static void Screenshot (WebDriver driver){
File scr=((TakesScreenshot)driver).getScreenshotAs(OutputType.FILE);
File dest= new File("C:\\Users\\Pictures\\test.png");
FileUtils.copyFile(scr, dest);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment