1、打开chrome 输入 “chrome://version/”来查看chrome版本
2、访问此网站 http://chromedriver.storage.googleapis.com/index.html 然后选择合适版本的driver
3、下载完之后解压,解压后的 chromedriver.exe 放置在你的谷歌浏览器的安装目录下的Application文件夹下:
4、然后我们配置环境变量,把该路径(C:\Program Files (x86)\Google\Chrome\Application),添加到系统变量的Path下:
这样就可以不用setProperty来设置驱动程序的路径了。
Java:
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
public class KeywordBrowserChrome {
public static void main(String[] args) {
WebDriver driver = new ChromeDriver();
driver.get("http://www.baidu.com");
}
}
python:
from selenium import webdriver
driver = webdriver.Chrome()
url = "http://www.baidu.com"
driver.get(url=url)