We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Capybara Version: 3.37.1
Driver Information (and browser if relevant): Chrome
When simulating a drag and drop, Capybara should fire a dragenter event before firing dragover See spec: https://www.w3.org/html/wg/spec/dnd.html
The dragenter event does not fire.
dragenter
Add a listener for dragenter events and verify that when using the drag_to the listener does not fire.
drag_to
This is because lib/capybara/selenium/extensions/html5_drag.rb does not implement firing dragenter.
lib/capybara/selenium/extensions/html5_drag.rb
I would expect this event to be fire from dragEnterTarget before firing dragover.
dragEnterTarget
dragover
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Meta
Capybara Version:
3.37.1
Driver Information (and browser if relevant):
Chrome
Expected Behavior
When simulating a drag and drop, Capybara should fire a dragenter event before firing dragover
See spec: https://www.w3.org/html/wg/spec/dnd.html
Actual Behavior
The
dragenter
event does not fire.Steps to reproduce
Add a listener for dragenter events and verify that when using the
drag_to
the listener does not fire.This is because
lib/capybara/selenium/extensions/html5_drag.rb
does not implement firing dragenter.I would expect this event to be fire from
dragEnterTarget
before firingdragover
.The text was updated successfully, but these errors were encountered: