Step1: 下载chromedriver。
下载路径: http://chromedriver.storage.googleapis.com/index.html
选择一个合适的下载即可。我下载的是2.20版本的chromedriver_win32.zip ,解压之后得到chromedriver.exe 。
Step2: 放置chromedriver.exe
在跟项目包平行的地方新建一个包,比如”lib",然后将 chromedriver.exe拷贝到lib下。
Step3: 添加 webdriver.chrome.driver 属性设置
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver; public class ChromeTest { public static void main(String[] args) {
System.setProperty("webdriver.chrome.driver","src/lib/chromedriver.exe"); WebDriver wd = new ChromeDriver();
wd.get("http://www.baidu.com");
try {
Thread.sleep(1200);
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println(wd.getCurrentUrl());
wd.quit(); }
}
Step4: 运行
Starting ChromeDriver 2.20.353145 (xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx) on port 14153
Only local connections are allowed.
https://www.baidu.com/