perform_actions
Send raw W3C WebDriver action sequences to coordinate pointer, key, and wheel inputs simultaneously, enabling complex interactions like drag with a key held down that simpler tools can't handle.
Instructions
Perform a raw W3C WebDriver Actions sequence (pointer/key/wheel input sources). Lower-level than advanced_click/hover/scroll/send_keys — use only when you need multi-source synchronized input (e.g. a key held down during a pointer drag) that those higher-level tools cannot express.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| actions | Yes | Array of W3C action sequence objects, each with { type: "pointer"|"key"|"wheel"|"none", id: string, actions: [...] }. See https://www.w3.org/TR/webdriver/#actions for the action object shapes. |