首页 > Java > java教程 > 正文

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

WBOY
发布: 2023-08-20 09:49:09
转载
1397 人浏览过

如何使用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
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!