HomeCodeHow to Take Screenshot and save to Local Folder using Java and...

How to Take Screenshot and save to Local Folder using Java and Selenium Webriver

This is to take a screenshot of any web page and save the image into a local folder. This is based on Selenium Webdriver and currently supporting Firefox, Internet Explorer, Chrome, and Safari. The image can save to local folder with the current time as the image name.

Take Screenshot and save to Local Folder using Java and Selenium Webriver

import java.io.File;
import java.io.IOException;
import org.apache.commons.io.FileUtils;
import org.openqa.selenium.OutputType;
import org.openqa.selenium.TakesScreenshot;
import org.openqa.selenium.WebDriver;

public class ImageSave {
String imageName = System.currentTimeMillis() + ".png";

public void addScreenshot(WebDriver driver) throws IOException,
ClassNotFoundException, InterruptedException {
File scrFile = ((TakesScreenshot) driver).getScreenshotAs(OutputType.FILE);
FileUtils.copyFile(scrFile, new File("C://screenshot//" + imageName));
}
}

Disclosure: Mashtips is supported by its audience. As an Amazon Associate I earn from qualifying purchases.

1 COMMENT

LEAVE A REPLY

Please enter your comment!
Please enter your name here

You May Like

More From Author