-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Clicking a link which has an image with display attribute set to block does not navigate to URL #1097
Comments
Can you try this with Firefox Nightly or Firefox 58, where we enabled WebDriver conforming element clicks? See https://www.hskupin.info/2017/12/15/element-interactability-checks-with-geckodriver-and-firefox-58/ for more details. |
You can close this problem because I found out it's a duplicate of issue 653 Here's my stacktrace and trace level log for informational purpose when using Firefox 58 beta 9. This time it throws an ElementNotInteractableError.
|
This issue has been automatically locked since there has not been any recent activity after it was closed. If you have run into an issue you think is related, please open a new issue. |
System
Testcase
Test.html
Test.rb
Stacktrace
Trace-level log
Clicking on the link does not navigate to https://www.google.com/ as expected.
There are 2 workarounds so that it does navigate to https://www.google.com.
element = driver.find_element(:css, 'a')
to
element = driver.find_element(:css, 'a img')
also fixes it.
The text was updated successfully, but these errors were encountered: