"The browser appears to have exited " selenium.common.exceptions.WebDriverException: Message: The browser appears to have exited before we could connect. If you specified a log_file in the FirefoxBinary constructor, check it for details.
I am using
Selenium version 2.53.6
firefox version 47.0
ubuntu 14.04.4
python 3.4.3
Here is the code that I am using
from pyvirtualdisplay import Display
from selenium import webdriver
display = Display(visible=0, size=(1024, 768))
display.start()
browser = webdriver.Firefox()
browser.get('https:\\aweber.com')
browser.quit()
display.stop()