riddle_automate
Automate browser tasks by running Playwright scripts to interact with web pages, capture screenshots, collect console logs, and record network traffic in a single operation.
Instructions
Run a Playwright script, wait for completion, and return all artifacts. Includes console logs and network HAR. Full sync automation - one call does everything.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Starting URL | |
| script | Yes | Playwright script. Use 'page' object. Example: await page.click('button'); await page.screenshot({path: 'result.png'}); | |
| device | No | Device preset | |
| timeout_sec | No | Max execution time in seconds (default: 60) | |
| force_clicks | No | Add { force: true } to all click() calls to bypass stability checks on animated elements (default: true) |