-
Notifications
You must be signed in to change notification settings - Fork 3.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
dblclick() doesn't work as click() #3798
Comments
The But the The |
Thanks for your comment @jennifer-shehane Tried to add a command below, but it didn't work
|
in one case where dblclick didn't work the following workaround helped... maybe it also helps u cy.get(....)
.then((element) => {
element.click();
element.click();
}); |
The code for this is done in cypress-io/cypress#3030, but has yet to be released. |
Released in |
Current behavior:
Desired behavior:
Steps to reproduce: (app code and test code)
Having the code to demonstrate the issue as below
Run the code above => get error
Work around:
Replace the line
cy.get('#divAdult #hrefIncAdt').dblclick()
by
cy.get('#divAdult #hrefIncAdt').click()
Versions
node version: v9.3.0
OS: MAC OS
The text was updated successfully, but these errors were encountered: