Batch
batchRun multiple browser automation steps in a single call, passing the same tab through. Stops on failure unless continue_on_error is set, reducing round trips.
Instructions
Run several tools in order in one call, passing the same tab through. Stops at the first failure unless continue_on_error is set. Use this to cut round trips: fill, fill, click, wait. Results are capped at 60000 characters across all steps: past that the batch stops early and reports truncated, so pass max_chars to reading steps or split a read-heavy sequence across calls.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| steps | Yes | Steps to run in order | |
| tab_id | No | Applied to every step that does not set its own | |
| continue_on_error | No | Keep going after a failing step |