Trying to execute simple test
from selenium import webdriver from selenium.webdriver.common.keys import Keys driver = webdriver.Firefox() driver.get(\'http://g
Its with the version of selenium which is causing the issue. I faced the same issue.
Its with the selenium version 3.3.3 which has the compatibility problem.
Try: pip uninstall selenium pip install selenium==3.3.1
Hope it works.