Workflow Executions
executionsRetrieve workflow execution history with full details, including node executions and screenshots, or list paginated summaries filtered by project and status.
Instructions
Look up workflow executions (history of check_app_in_browser, trigger_crawl, and test-suite runs). Pass an "action":
"get" {uuid} → one execution with FULL detail (nodeExecutions, state, errorInfo) + any screenshot/gif artifacts.
"list" {projectUuid?, status?, page?, pageSize?} → paginated execution summaries. status ∈ completed|running|failed|cancelled|pending.
Tip: after a fresh check_app_in_browser run, poll action:"get" with the returned executionId until artifact URLs are available.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| action | Yes | Operation to perform. | |
| uuid | No | [get] Execution UUID. | |
| projectUuid | No | [list] Filter by project UUID. | |
| status | No | [list] Filter by status. | |
| page | No | [list] Page (1-indexed). | |
| pageSize | No | [list] Page size (1..200). |