selenium-webdriver
Tomando capturas de pantalla
Buscar..
Introducción
Tomando capturas de pantalla y guardando en un camino particular
Sintaxis
- Archivo src = ((TakesScreenshot) driver) .getScreenshotAs (OutputType.FILE);
- FileUtils.copyFile (src, nuevo archivo ("D: \ screenshot.png"));
JAVA
Código para tomar y guardar captura de pantalla:
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();
}
}
}
Toma la captura de pantalla:
File src = ((TakesScreenshot)driver).getScreenshotAs(OutputType.FILE);
Guarda la captura de pantalla desde el origen al destino:
FileUtils.copyFile(src, new File("D:\\screenshot.png"));
Modified text is an extract of the original Stack Overflow Documentation
Licenciado bajo CC BY-SA 3.0
No afiliado a Stack Overflow