-
Notifications
You must be signed in to change notification settings - Fork 47
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
Drop stopped working after the second drag and drop #120
Comments
I'm facing the same issue but after the first try itself. While inspecting I found the below part is repeating again and again |
I'm having the same issue as Yogendiran Subramanian I had a poke at the source (from index.js), it looks like dragstart recursively calls itself, and I can't see where it would break out by setting dropped to true, although my understanding of JS and cypress is spotty.
I sorted it by removing the call to dragover inside dragover and putting that in a custom command. Seems happy now 🤷♀️ |
Any updates ? we are having the same issue and it is a huge blocker for us. |
I want to drag and drop three elements, but after the second drag and drop, it stopped working. The following code console log
true, true, false
. Any idea why?The text was updated successfully, but these errors were encountered: