Zoeken…


Invoering

Schermafbeeldingen maken en opslaan op een bepaald pad

Syntaxis

  • Bestand src = ((TakesScreenshot) stuurprogramma) .getScreenshotAs (OutputType.FILE);
  • FileUtils.copyFile (src, nieuw bestand ("D: \ screenshot.png"));

JAVA

Code om screenshot te maken en op te slaan:

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();
        }
    }
}

Neemt screenshot:

File src = ((TakesScreenshot)driver).getScreenshotAs(OutputType.FILE);

Slaat screenshot op van bron tot bestemming:

FileUtils.copyFile(src, new File("D:\\screenshot.png"));


Modified text is an extract of the original Stack Overflow Documentation
Licentie onder CC BY-SA 3.0
Niet aangesloten bij Stack Overflow