Its very important to take screenshot when we execute a test script. When we execute huge number of test scripts, and if some test fails, we need to check why the test has failed.
It helps us to debug and identify the problem by seeing the screen shot.
In selenium webdriver, we can take the screen shot using the below command.
File scrFile = ((TakesScreenshot)driver).getScreenshotAs(OutputType.FILE);
Check the framework example of Taking ScreenShot for ONLY Failed Tests using TestNG
The below example explains how to take the screen shot when the test fails.
import java.io.File;
import org.apache.commons.io.FileUtils;
import org.openqa.selenium.By;
import org.openqa.selenium.OutputType;
import org.openqa.selenium.TakesScreenshot;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.testng.annotations.Test;
public class takeScreenShotExample{
public WebDriver driver;
@Test
public void openBrowser() throws Exception {
driver = new FirefoxDriver();
driver.manage().window().maximize();
driver.get("http://www.google.com");
try{
//the below statement will throw an exception as the element is not found, Catch block will get executed and takes the screenshot.
driver.findElement(By.id("testing")).sendKeys("test");
//if we remove the below comment, it will not return exception and screen shot method will not get executed.
//driver.findElement(By.id("gbqfq")).sendKeys("test");
}
catch (Exception e){
System.out.println("I'm in exception");
//calls the method to take the screenshot.
getscreenshot();
}
}
public void getscreenshot() throws Exception
{
File scrFile = ((TakesScreenshot)driver).getScreenshotAs(OutputType.FILE);
//The below method will save the screen shot in d drive with name "screenshot.png"
FileUtils.copyFile(scrFile, new File("D:\\screenshot.png"));
}
}
Selenium Tutorials:
Comments
This will override the screenshot always
this program will always override the newly taken screenshot.
What if we want to retain the old screenshots too
Add current time to screenshot name
You can just name the screenshot with current date and time, which will create new image every time, But you need to make sure, delete all the file if they are no more useful.
Deleting Screenshot
Hi,
Is there any way in Selenium ,we can take the Screenshot and not save it on any local machine (any path) ?
Or , we can delete the Screenshot taken by Selenium ( not manually) ?
Thanks
Add new comment