I'm trying to scrape and print the HTML of a page using Selenium in Python, but every time I run it I get the error message
Firefox quit unexpectedly.
I'm new to Selenium, so any help would be greatly appreciated. I'm hoping for the simplest fix possible. Thank you!
My code:
import selenium
from selenium import webdriver
browser = webdriver.Firefox()
browser.get('http://seleniumhq.org/')
print browser.page_source