ChromeDriver ver。 2.31在Google Chrome浏览器中打开关于Chrome页面在Mac OS X Yosemite(python + splinter)上的62.0.3202.94
答案 0 :(得分:0)
问题解决了。
从https://chromedriver.storage.googleapis.com/index.html从v2.31手动更新ChromeDrive到v2.33解决了这个问题。 或者如果你使用brew只执行:
brew upgrade chromedriver
要在Mac OSX Yosemite上查看ChromeDriver版本,请运行以下代码:
from selenium import webdriver
driver = webdriver.Chrome(executable_path = '/usr/local/bin/chromedriver')
print "google ChromeDriver version: %s" % driver.capabilities['chrome']['chromedriverVersion']