如何在 Selenium 中捕获屏幕截图?


我们可以借助 TakesScreenshot 接口在 Selenium 中捕获屏幕截图。getScreenshotAs() 方法用于捕获屏幕截图并将其保存在特定位置。

示例

import org.openqa.selenium.By;
import org.openqa.selenium.Keys;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.chrome.ChromeDriver;
import java.util.concurrent.TimeUnit;
import java.io.File;
import org.apache.commons.io.FileUtils;
import org.openqa.selenium.OutputType;
import org.openqa.selenium.TakesScreenshot;
public class ScreenshotFull{
   public static void main(String[] args) {
      System.setProperty("webdriver.chrome.driver",
"C:\Users\ghs6kor\Desktop\Java\chromedriver.exe");
      WebDriver driver = new ChromeDriver();
      String url = "https://tutorialspoint.com/questions/index.php";
      driver.get(url);
      driver.manage().timeouts().implicitlyWait(12, TimeUnit.SECONDS);
      // capture screenshot with getScreenshotAs() and store in the //Screenshots folder
      TakesScreenshot s = (TakesScreenshot)driver;
      File source = s.getScreenshotAs(OutputType.FILE);
      FileUtils.copyFile(source, new File("./Screenshots/tutorialpoint.png"));
      driver.quit();
   }
}

更新于:2020 年 6 月 11 日

306 次查看

启动你的 事业

完成课程即可获得认证

立刻开始
广告