-
-
Notifications
You must be signed in to change notification settings - Fork 8.2k
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
doubleClick(clickable): does not double click the found element #4149
Comments
This is an issue with geckodriver, please see mozilla/geckodriver#661 for tracking when this is resolved |
@lmtierney : Hi, Thanks for suggestion, but I didn't find any appropriate answer from the link you shared. Everyone is closing the issue without checking or sharing any appropriate solution for the issue. Can't understand how busy you guy's are to share the link without checking it for the proper solution. |
There is no solution at this time, that is why there is an issue created. Sometimes, there isn't an available solution for a problem, which is why they are entered as issues that need to be fixed |
Below solution worked for me. To DoubleClick an Elementpublic void doubleClick(WebElement webElement) { //For FF browser. //For IE //((JavascriptExecutor)driver).executeScript("arguments[0].fireEvent('ondblclick');", webElement); } |
Hi,
We upgraded our system to use Gecko Driver(Version geckodriver-v0.16.1-win64) along with Selenium Web Driver(3.4.0) and FF 53.0. A feature called "Double Click" in our project is not working. We tried many different techniques but till now there is no success in hand. Also, we are not getting any error out of that. Below are the code that we are using to do so :
The above method is 👎
The failure is not specific to any event or project but to all. Please advise.
Also, the classes related to double click in Selenium 3.4.0 is showing deprecated. Could you please let us know the next option we have to use these features ?
The text was updated successfully, but these errors were encountered: