You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 29, 2018. It is now read-only.
Python example of the test:
element = self.driver.find_element_by_id('login-button')
print 'About to click...'
element.click()
print 'Done clicking.'
This will randomly hang on the click() call and the output is:
About to click...
The "login-button" triggers a form submit. The submit does happen and the browser redirects
to the home page as intended. But the test hangs on the element.click() line.
Run it over and over and sometimes it will pass and output:
About to click...
Done clicking.
When it does hang, most times if you manually refresh the browser page the test will
continue as if everything is okay. Seems like something in the click() doesn't realise
that the click happened.
Works fine on Firefox 4 and 15.01
I believe it worked on 16 but can't confirm.
Selenium version: 2.26.0
OS: Windows 7 and Salix OS (Slackware)
Browser: Firefox
Browser version: 17