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

2023年 8月 28日 47.7k 0

如何使用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:Usersghs6korDesktopJavachromedriver.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按钮?的详细内容,更多请关注每日运维网(www.mryunwei.com)其它相关文章!

相关文章

JavaScript2024新功能:Object.groupBy、正则表达式v标志
PHP trim 函数对多字节字符的使用和限制
新函数 json_validate() 、randomizer 类扩展…20 个PHP 8.3 新特性全面解析
使用HTMX为WordPress增效:如何在不使用复杂框架的情况下增强平台功能
为React 19做准备:WordPress 6.6用户指南
如何删除WordPress中的所有评论

发布评论