selenium-webdriver
Screenshots aufnehmen
Suche…
Einführung
Screenshots erstellen und in einem bestimmten Pfad speichern
Syntax
- Datei src = ((TakesScreenshot) Treiber) .getScreenshotAs (OutputType.FILE);
- FileUtils.copyFile (src, neue Datei ("D: \ screenshot.png"));
JAVA
Code zum Erstellen und Speichern eines Screenshots:
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();
}
}
}
Nimmt Screenshot:
File src = ((TakesScreenshot)driver).getScreenshotAs(OutputType.FILE);
Speichert den Screenshot von der Quelle bis zum Ziel:
FileUtils.copyFile(src, new File("D:\\screenshot.png"));
Modified text is an extract of the original Stack Overflow Documentation
Lizenziert unter CC BY-SA 3.0
Nicht angeschlossen an Stack Overflow