- 下载对应的chrome driver版本,放到chrome的安装目录
http://chromedriver.storage.googleapis.com/index.html
chrome和chromedriver对应的关系
- 代码启动
import os
from selenium import webdriver
chromedriver = "C:\Program Files (x86)\Google\Chrome\Application\chromedriver.exe"
# 这里的driver就是刚刚上面下载的
os.environ["webdriver.chrome.driver"] = chromedriver
driver = webdriver.Chrome(chromedriver)
driver.get("http://stackoverflow.com")
driver.quit()