Scout in development · launch 1 Dec 2026. Try it live · docs

Use Case

Automated QA

Check UI rules reliably in CI: screenshot, assert, and facts as API calls in the pipeline you already have.

Typical CI flow

  1. 01Deploy the staging URL
  2. 02POST /v1/assert with the critical rules
  3. 03On failure, capture /v1/screenshot
  4. 04Fail the pipeline when passed=false

Assert example

json
{
  "url": "https://staging.example.com/checkout",
  "assert": [
    { "selector": "#buy", "visible": true },
    { "selector": ".price", "contains": "29" }
  ]
}