Note that there are some explanatory texts on larger screens.

plurals
  1. POCan't run Firefox with Selenium Webdriver
    primarykey
    data
    text
    <p>I'm trying to run this code in Python:</p> <pre><code>from selenium import webdriver from selenium.common.exceptions import TimeoutException from selenium.webdriver.support.ui import WebDriverWait # available since 2.4.0 from selenium.webdriver.support import expected_conditions as EC # available since 2.26.0 profile = webdriver.FirefoxProfile() browser = webdriver.Firefox(firefox_profile = profile) # Create a new instance of the Firefox driver driver = webdriver.Firefox() # go to the google home page driver.get("http://www.google.com") </code></pre> <p>When I run it, Firefox starts after a while on a blank page, and stays that way. I get this message : </p> <pre><code>Traceback (most recent call last): File "test.py", line 8, in &lt;module&gt; browser = webdriver.Firefox(firefox_profile = profile) File "/home/fx/EnvDev/local/lib/python2.7/site-packages/selenium/webdriver/firefox/webdriver.py", line 62, in __init__ desired_capabilities=capabilities) File "/home/fx/EnvDev/local/lib/python2.7/site-packages/selenium/webdriver/remote/webdriver.py", line 72, in __init__ self.start_session(desired_capabilities, browser_profile) File "/home/fx/EnvDev/local/lib/python2.7/site-packages/selenium/webdriver/remote/webdriver.py", line 114, in start_session 'desiredCapabilities': desired_capabilities, File "/home/fx/EnvDev/local/lib/python2.7/site-packages/selenium/webdriver/remote/webdriver.py", line 165, in execute self.error_handler.check_response(response) File "/home/fx/EnvDev/local/lib/python2.7/site-packages/selenium/webdriver/remote/errorhandler.py", line 152, in check_response raise exception_class(message, screen, stacktrace) selenium.common.exceptions.WebDriverException: Message: '' </code></pre> <p>I use Firefox 20.0 on Ubuntu 12.04 behind a proxy.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload