你试试这样子,这样子我能打开:
#coding = utf8
import os
from selenium import webdriver
chromedriver = "C:\Program Files (x86)\Google\Chrome\Application\chromedriver_x64.exe"
os.environ["webdriver.chrome.driver"]=chromedriver
driver = webdriver.Chrome()
driver.get("http://baidu.com")#运行到这的时候报错了。。。
print(driver.title)
driver.quit()
还有就是你的seleniu是2.x还是3.x版本?你的chrome是多少版本的?你是否下载了兼容的东东:chromedriver.exe
请教下 这个问题怎么解决,遇到了同样问题