browser_drag
Drag and drop elements in Chrome using precise selectors, bypassing anti-bot detection for automation and testing on protected websites.
Instructions
Drag an element to another element
Args:
sourceSelector: The selector for the element to drag - required
targetSelector: The selector for the target location - required
Input Schema
Name | Required | Description | Default |
---|---|---|---|
sourceSelector | Yes | ||
targetSelector | Yes |
Input Schema (JSON Schema)
{
"properties": {
"sourceSelector": {
"title": "Sourceselector",
"type": "string"
},
"targetSelector": {
"title": "Targetselector",
"type": "string"
}
},
"required": [
"sourceSelector",
"targetSelector"
],
"title": "browser_dragArguments",
"type": "object"
}