关于在selenium 中 webdriver 截图操作

Posted 罐装七喜

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于在selenium 中 webdriver 截图操作相关的知识,希望对你有一定的参考价值。

package prictce;

import java.io.File;
import java.io.IOException;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.openqa.selenium.OutputType;
import org.openqa.selenium.TakesScreenshot;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.support.ui.WebDriverWait;
import com.sun.jna.platform.FileUtils;

public class baidu {
public static void main(String[] args) {
System.setProperty("webdriver.chrome.driver","C:\\Program Files (x86)\\Google\\Chrome\\Application\\chromedriver.exe");  //启动驱动
WebDriver driver= new ChromeDriver(); //谷歌的驱动
driver.manage().window().maximize(); //讲窗口最大化
driver.get("http://www.baidu.com"); //打开百度

File srcFile = ((TakesScreenshot)driver).getScreenshotAs(OutputType.FILE);    //讲截取的图片以文件的形式返回
try {
org.apache.commons.io.FileUtils.copyFile(srcFile, new File("d:\\screenshot.png"));     //使用copyFile()方法保存获取到的截图文件
} catch (IOException e) {

e.printStackTrace();
}
driver.quit();
}
}




























以上是关于关于在selenium 中 webdriver 截图操作的主要内容,如果未能解决你的问题,请参考以下文章

selenium实现网页截全屏

关于在selenium 中 webdriver 截图操作

怎么用Selenium webdriver进行截图操作

利用 Python + Selenium 实现对页面的指定元素截图(可截长图元素)

Python Selenium 自动化实现截屏操作

关于selenium中webdriver的工作原理知识整理