首頁  >  文章  >  Java  >  如何使用Java中的Selenium WebDriver模擬按下Print Screen按鈕?

如何使用Java中的Selenium WebDriver模擬按下Print Screen按鈕?

WBOY
WBOY轉載
2023-08-20 09:49:091473瀏覽

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

我們可以使用Selenium模擬列印螢幕按鈕。截圖是 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

# 處理。這是朝著故障分析的重要一步。

我們將把驅動程式物件轉換為TakeScreenshot介面。

語法

TakesScreenshot s = (TakesScreenshot)driver;

然後,使用getScreenshotAs#方法,我們將得到一個映像文件,並使用FileUtils.copyFile方法將該文件複製到指定位置。

語法

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

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

以上是如何使用Java中的Selenium WebDriver模擬按下Print Screen按鈕?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除