Python Selenium Webdriver.Firefox()挂起'about:blank& utm_content = firstrun'

时间:2016-09-19 15:12:18

标签: python selenium firefox

使用Selenium版本2.53.6并尝试使用Firefox 44,45,46和47 ...

每当我跑线

  

driver = webdriver.Firefox()

Firefox初始化但挂起'about:blank& utm_content = firstrun',我无法在命令行上输入其他代码。

一直在研究如何解决这个问题,到目前为止唯一可行的解​​决方案是降级FF(但我已经尝试了很多旧版本)(使用Python 2.7并且尝试使用3.5并且失败了) )

1 个答案:

答案 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希望我帮助过。 :)