Selenium,基础环境搭建

一、Maven包依赖关系图

Selenium,基础环境搭建_第1张图片

 

二、导入Selenium包(高版本包里面已经包含了各平台驱动,如图

        
        
            org.seleniumhq.selenium
            selenium-java
            3.12.0
        

Selenium,基础环境搭建_第2张图片

三、chromDriver驱动下载

http://chromedriver.storage.googleapis.com/index.html

 

四、chrome浏览器与chromedriver对应关系。

各个chrome浏览器和chromedriver版本对应关系,可以在连接中找到任意一个版本点击进去,查看notes.txt,如:

http://chromedriver.storage.googleapis.com/2.33/notes.txt

 

五、通过chromeDriver启动chrome浏览器

/**
 * 通过Selenuim启动chrome浏览器
 * @author Baopz
 * @date 2018/05/24
 */
public class SeleniumApplication {
    private static final String base = "https://www.baidu.com";

    public static void main(String[] args) {
        //设置驱动所在位置
        System.setProperty("webdriver.chrome.driver","D:\\chromedriver\\2.37\\chromedriver.exe");
        WebDriver driver = new ChromeDriver(initChromeOpts());
        driver.get(base);
        //做一些事
        try {
            TimeUnit.SECONDS.sleep(5);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
        //关闭浏览器
        driver.quit();
    }

    /**
     * 设置浏览器所需参数
     * @return
     */
    private static ChromeOptions initChromeOpts() {
        ChromeOptions chromeOptions = new ChromeOptions();
        //这里可以不设置浏览器所在位置,这样系统会寻找所需浏览器,如果没有找到,抛错
        chromeOptions.setBinary("C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe");
        return chromeOptions;
    }
}

六、后续篇章chromeDriver对chrome浏览器操作

Selenium之Chrome浏览器设置-番外篇

Selenium-WebDriver

Selenium 纵向滚动条控制、Selenuim js赋值问题

selenium unable to set cookie,selenium 截图

 

你可能感兴趣的:(爬虫,Selenium)