2

I've used Firefox with Webdriver on this machine before, but suddenly when I use any code that utilizes Firefox as the driver, Firefox will open and just sit there blankly. Absolutely nothing loads, my program hangs until I close the window at which point it raises the "browser not open" error.

Tried reinstalling. Chrome/IE Drivers work but I don't really want to use them.

Included a pic of exactly what happens when I use any code, for instance

from selenium import webdriver
from selenium.webdriver.common.keys import Keys

driver = webdriver.Firefox()
url = "http://google.com" 
driver.get(url)

Even this gets me nothing. enter image description here

Adam Magyar
  • 1,423
  • 3
  • 13
  • 13

1 Answers1

4

upgrade to selenium version 2.29.0

pip install -U selenium

there was a bug fix in the previous version

bosco-
  • 1,733
  • 2
  • 15
  • 18