Home > Java > javaTutorial > How to simulate pressing Print Screen button using Selenium WebDriver in Java?

How to simulate pressing Print Screen button using Selenium WebDriver in Java?

WBOY
Release: 2023-08-20 09:49:09
forward
1517 people have browsed it

如何使用Java中的Selenium WebDriver模拟按下Print Screen按钮?

We can use Selenium to simulate the print screen button. The screenshot is captured with the Print screen button. Capturing a screenshot is a three way process. It is an important step towards failure analysis.

We shall convert the driver object to TakeScreenshot interface.

Syntax

deal with. This is an important step towards failure analysis.

We will convert the driver object to the TakeScreenshot interface.

Syntax

TakesScreenshot s = (TakesScreenshot)driver;
Copy after login

Then, using the getScreenshotAs method, we will get an image file and use the FileUtils.copyFile method to copy the file to Specify location. The Chinese translation of

Grammar

File sp=s.getScreenshotAs(OutputType.FILE);
FileUtils.copyFile(sp, new File("path of image file"));
Copy after login

Example

is:

Example

import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.OutputType;
import org.openqa.selenium.TakesScreenshot;
import org.apache.commons.io.FileUtils;
import java.io.File;
public class PrintScreenSimulate {
   public static void main(String[] args) {
      System.setProperty("webdriver.chrome.driver",
      "C:\Users\ghs6kor\Desktop\Java\chromedriver.exe");
      WebDriver driver = new ChromeDriver();
      driver.get("https://www.tutorialspoint.com/index.htm");
      // screenshot capturing
      File src = ((TakesScreenshot)driver).getScreenshotAs(OutputType.FILE);
      FileUtils.copyFile(src, new File("logopage.png"));
      driver.quit();
   }
}
Copy after login

The above is the detailed content of How to simulate pressing Print Screen button using Selenium WebDriver in Java?. For more information, please follow other related articles on the PHP Chinese website!

source:tutorialspoint.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template