Skip to content
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

WebElement.click() stopped working on some fields between Edge 118.0.2088.76 and 120.0.2210.144 #139

Open
RhythmzZ opened this issue Mar 5, 2024 · 0 comments
Labels
bug Something isn't working

Comments

@RhythmzZ
Copy link

RhythmzZ commented Mar 5, 2024

Hi

We have a java selenium framework supporting internal software and using multiple browsers. After an update from Edge 118.0.2088.76 to 120.0.2210.144 WebElement.click() functionality started failing for some fields, tabs etc. As a note we also bumped chrome/firefox and we've only seen the issue with Edge.

Example failure:
org.openqa.selenium.JavascriptException: javascript error: d.elementFromPoint is not a function

Interestingly enough as a workaround using java script for the clicks works fine:
JavascriptExecutor jsExecutor = (JavascriptExecutor) driver;
jsExecutor.executeScript("arguments[0].click();", element);

I've gone through release notes for Edge and couldn't find anything meaningful I can relate to the specific issue. Is this a known issue? Are there any guidelines I could use to investigate the issue further and find a potential fix?

Edit: As a note I did try Edge 122 and the issue exists there as well.

Thanks.

@RhythmzZ RhythmzZ added the bug Something isn't working label Mar 5, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant