drag_by_uid_to_uid
Simulate HTML5 drag-and-drop between elements using JavaScript drag events for browser automation testing and web interaction scenarios.
Instructions
Simulate HTML5 drag-and-drop from one UID to another using JS drag events. May not work with all custom libraries.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fromUid | Yes | The UID of the element to drag | |
toUid | Yes | The UID of the target element to drop onto |
Input Schema (JSON Schema)
{
"properties": {
"fromUid": {
"description": "The UID of the element to drag",
"type": "string"
},
"toUid": {
"description": "The UID of the target element to drop onto",
"type": "string"
}
},
"required": [
"fromUid",
"toUid"
],
"type": "object"
}