如何在 Java 中使用Selenium WebDriver模拟 Print screen 按钮?


我们可以使用 Selenium 来模拟 Print screen 按钮。屏幕截图就是使用 Print screen 按钮捕获的。捕获屏幕截图需要三个步骤。这是进行故障分析的重要步骤。

我们应将驱动程序对象转换为TakeScreenshot接口。

语法

TakesScreenshot s = (TakesScreenshot)driver;

然后,使用getScreenshotAs方法生成一个图片文件,并使用FileUtils.copyFile方法将文件复制到某个位置。

语法

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

示例

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://tutorialspoint.com/index.htm");
      // screenshot capturing
      File src = ((TakesScreenshot)driver).getScreenshotAs(OutputType.FILE);
      FileUtils.copyFile(src, new File("logopage.png"));
      driver.quit();
   }
}

更新于:2020-11-30

408 次浏览

启动你的职业生涯

完整课程后获得认证

开始
广告
© . All rights reserved.