For AI agents: the complete documentation index is available at https://a3s-lab.github.io/Test/v0.15.0/en/llms.txt, the full documentation bundle is available at https://a3s-lab.github.io/Test/v0.15.0/en/llms-full.txt, and this page is available as Markdown at https://a3s-lab.github.io/Test/v0.15.0/en/guide/index.md.

v0.15.0 quick start

Historical snapshot

This page describes A3S Test v0.15.0. Use the version selector above for current v0.16.2 documentation.

Install the pinned release

On macOS or Linux:

curl -fsSL https://github.com/A3S-Lab/Test/releases/latest/download/install.sh |
  sh -s -- --version v0.15.0

On Windows PowerShell:

& ([scriptblock]::Create((irm 'https://github.com/A3S-Lab/Test/releases/latest/download/install.ps1'))) -Version v0.15.0

Run a session

a3s-test agent start http://127.0.0.1:3000/checkout \
  --session checkout \
  --goal "Complete checkout" \
  --success "The confirmation heading is visible" \
  --json

a3s-test agent observe --session checkout --interactive --json

Bind the action to the latest observation_id in the response:

a3s-test agent click @e1 --session checkout --observation 1 --json
a3s-test agent finish --session checkout --status passed \
  --summary "Checkout completed" --json

Workspace events.jsonl, report.json, and artifacts/ form the append-only evidence record. v0.15.0 includes advisory design audit and Test Kit 0.3.0, but not the selection-scoped insert_text action introduced in v0.16.0.