Execution statuses
Each workflow run moves through these statuses:| Status | Meaning |
|---|---|
pending | Queued, waiting to start. |
running | The agent is performing the test. |
success | The test passed. |
failure | The test failed. |
cancelled | You cancelled the run before it finished. |
Artifacts
Each execution can produce artifacts: files the agent captured or generated during the test. You can download them from the dashboard or through the API.
Artifact types
| Type | Description |
|---|---|
screenshot | A screenshot the agent took during the test. |
video | A recording of the full test session. |
javascript | JavaScript code the agent executed. |
python | Python code the agent executed. |
shellscript | Shell commands the agent ran. |
Accessing artifacts (API)
Artifacts appear in the execution response under theartifacts array. Each entry includes:
artifact_type- One of the types above.filename- The file name.presigned_url- A download URL.presigned_url_expires_at- When the URL stops working.