Skip to content

Instantly share code, notes, and snippets.

@seleniumgists
Created January 11, 2019 10:17
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/f36c2674930f4f7822cd38c95ad9e74a to your computer and use it in GitHub Desktop.
Save seleniumgists/f36c2674930f4f7822cd38c95ad9e74a to your computer and use it in GitHub Desktop.
generated automatically from #selenium on seleniumhq slack
public void Screenshot (){
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