New issue 2974 by mamun...@gmail.com: driver.get(url) not working properly
http://code.google.com/p/selenium/issues/detail?id=2974
Selenium version: Firefox WebDriver 2.14.0
Python: 2.7
OS: Win 7
Browser: Firefox
Brower version: 7.0.1
Code:
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
driver = webdriver.Firefox()
driver.get("http://www.python.org")
assert "Python" in driver.title
elem = driver.find_element_by_name("q")
elem.send_keys("selenium")
elem.send_keys(Keys.RETURN)
assert "Google" in driver.title
driver.close()
Problem:
Freeze at driver.get("http://www.python.org"). Rest of the statement not
executed. Don't show any exception either.
Attachments:
pythonbug.png 98.4 KB
Comment #1 on issue 2974 by barancev: driver.get(url) not working properly
http://code.google.com/p/selenium/issues/detail?id=2974
(No comment was entered for this change.)
Comment #2 on issue 2974 by david.bu...@theautomatedtester.co.uk:
driver.get(url) not working properly
http://code.google.com/p/selenium/issues/detail?id=2974
do you have a proxy?
No proxy is used. Updated to firefox 8.0.1 but no luck. No problem with Ie
and Chrome.
Attachments:
freeze.png 80.4 KB