使用Selenium版本2.53.6并尝试使用Firefox 44,45,46和47 ...
每当我跑线
driver = webdriver.Firefox()
Firefox初始化但挂起'about:blank& utm_content = firstrun',我无法在命令行上输入其他代码。
一直在研究如何解决这个问题,到目前为止唯一可行的解决方案是降级FF(但我已经尝试了很多旧版本)(使用Python 2.7并且尝试使用3.5并且失败了) )
答案 0 :(得分:0)
我建议使用chrome。 http://chromedriver.storage.googleapis.com/2.9/chromedriver_win32.zip下载并将其解压缩到位于python27/scripts
根目录中的C:\\ Drive
文件夹,然后运行此脚本。
from selenium import webdriver
driver = webdriver.Chrome()
driver.get('http://www.google.com')
它应该将你连接到google.com希望我帮助过。 :)