Workflow Executions
executionsRetrieve workflow execution history with full details or paginated summaries. Use 'get' to inspect a specific execution or 'list' to filter by project, status, and page.
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 |
|---|---|---|---|
| page | No | [list] Page (1-indexed). | |
| uuid | No | [get] Execution UUID. | |
| action | Yes | Operation to perform. | |
| status | No | [list] Filter by status. | |
| pageSize | No | [list] Page size (1..200). | |
| projectUuid | No | [list] Filter by project UUID. |