时间:2021-05-20
方法一:Selenium中截图类TakeScreenshout,这个类主要是获取浏览器窗体内的内容,不包括浏览器的菜单和桌面的任务栏区域,我们用百度首页来截图,看看截图效果。
FileUtils.copyFile(srcFile, new File("屏幕截图", time + ".png"));“屏幕截图”是我们自己创建的文件夹用来存放截图文件,此文件夹在project(工程)的更目录
;
当然也是可以设置保存到其他目录下:FileUtils.copyFile(srcFile, new File("D:\\资料图片", time + ".png"));
示例代码如下:
package com.sandy; import java.io.File;import java.text.SimpleDateFormat;import java.util.Calendar; import org.apache.commons.io.FileUtils;import org.openqa.selenium.OutputType;import org.openqa.selenium.TakesScreenshot;import org.openqa.selenium.WebDriver;import org.openqa.selenium.chrome.ChromeDriver; public class ScreenShot { private static WebDriver driver; public static void main(String[] args) throws Exception { System.setProperty("webdriver.chrome.driver", "E:\\eclipse_jar\\selenium_jar\\chromedriver.exe"); driver = new ChromeDriver(); driver.get("http://"); driver.manage().window().maximize(); WebElement element = driver.findElement(By.id("su")); elementSnapshot(element); //System.currentTimeMillis()、Calendar.getInstance().getTimeInMillis()获取时间戳的方法 FileUtils.copyFile(elementSnapshot(element), new File("屏幕截图", System.currentTimeMillis()+".png")); Thread.sleep(2000); driver.quit(); } /** * 部分截图(元素截图) * 有时候需要元素的截图,不需要整个截图 * @throws Exception */ public static File elementSnapshot(WebElement element) throws Exception { //创建全屏截图 WrapsDriver wrapsDriver = (WrapsDriver)element; File screen = ((TakesScreenshot)wrapsDriver.getWrappedDriver()).getScreenshotAs(OutputType.FILE); BufferedImage image = ImageIO.read(screen); //获取元素的高度、宽度 int width = element.getSize().getWidth(); int height = element.getSize().getHeight(); //创建一个矩形使用上面的高度,和宽度 Rectangle rect = new Rectangle(width, height); //元素坐标 Point p = element.getLocation(); BufferedImage img = image.getSubimage(p.getX(), p.getY(), rect.width, rect.height); ImageIO.write(img, "png", screen); return screen; } }以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
Java标准API中有个Robot类,该类可以实现屏幕截图,模拟鼠标键盘操作这些功能。这里只展示其屏幕截图。 截图的关键方法createScreenCaptu
selenium+python,使用webdriver的截图函数get_screenshot_as_file()截图,代码如下:fromseleniumimpo
Selenium默认的截图save_screenshot只支持对当前窗口内容进行截图,当如果你想要截取整个网页,那么,可以明确的告诉你。Selenium做不到。
本文实例为大家分享了java+selenium爬取图片签名的具体实现方法,供大家参考,具体内容如下学习记录:1.注意对应的版本非常重要,使用selenium得下
Selenium是一个可以让浏览器自动化地执行一系列任务的工具,常用于自动化测试。不过,也可以用来给网页截图。目前,它支持Java、C#、Ruby以及Pytho