[Feature] drag and drop
See original GitHub issueDrag and drop should work with playwright. Using the existing mouse apis should generate working dragstart
, drag
, and drop
events. There should also be new APIs to simulate dropping in external content, and to inspect content dragged from the web page.
Issue Analytics
- State:
- Created 4 years ago
- Reactions:41
- Comments:21 (3 by maintainers)
Top Results From Across the Web
HTML Drag and Drop API - W3Schools
Drag and drop is a very common feature. It is when you "grab" an object and drag it to a different location. Browser...
Read more >Drag and drop - Patterns - Human Interface Guidelines - Design
Using drag and drop, people can move or duplicate selected photos, text, and other content by dragging the selection from one location to...
Read more >Drag and drop - Wikipedia
In computer graphical user interfaces, drag and drop is a pointing device gesture in which the user selects a virtual object by "grabbing"...
Read more >HTML Drag and Drop API - MDN Web Docs
HTML Drag and Drop interfaces enable applications to use drag-and-drop features in browsers. The user may select draggable elements with a ...
Read more >Use this hidden iPhone feature to drag-and-drop files, photos ...
The drag-and-drop feature on iOS 15 allows you to quickly send a link via text message or add a photo attachment to an...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@bsteffensTempus I was missing some clear documentation as well and I implemented this based on the new features:
or this more standalone
For reference in 1.13.0 we have page.dragAndDrop() https://github.com/microsoft/playwright/releases/tag/v1.13.0 https://playwright.dev/docs/next/api/class-page/#page-drag-and-drop
Want to bring this topic up…Are there any progress on this?