Quick Route
| Situation |
Go to |
| Stand up a goal-driven run from scratch |
Discovery + references/setup.md |
| Decide agentic vs scripted for a given flow |
Fit: Intent-Driven vs Scripted |
| Agent passes one run, fails the next |
Determinism |
| "How does it click without screenshots?" |
Interaction Model |
| Runs are slow / burning tokens |
Cost and Latency |
| Agent reports false success |
Success Assertion (the Oracle) |
| Flow is stable — make it permanent |
Graduation → references/graduation-and-ci.md |
| Block a merge on the goal |
CI Gating → references/graduation-and-ci.md |
| Canvas / no accessibility tree |
Canvas Fallback → references/graduation-and-ci.md |
Discovery Questions
First, check .agents/qa-project-context.md in the project root and skip anything it already
answers (stack, environments, seed/reset tooling, model access).
- Which flow, and how often does its UI change? Fast-changing/experimental UI favors
intent-driven; a stable critical path (login) favors scripted. This decides the whole approach.
- Is there a seeded fixture and a way to reset state? Determinism is impossible without
seeded data and a per-run reset. If neither exists, that is step zero.
- Can you deep-link past auth to a seeded entry point? Re-driving login every run is the
biggest avoidable cost; a seeded entry URL scopes the goal and cuts steps.
- What is the unambiguous success oracle? Specific account text, a
/dashboard URL, an
order number — plus a forbidden state. "No error" is not an oracle.
- Does the target render to canvas / WebGL? No accessibility tree means snapshot-first
won't work; plan the vision fallback or instrument the canvas with ARIA.
- Which model and budget? Pin a model id and a step budget up front; tier cheap steps to
Haiku 4.5 / Sonnet 4.6 and reserve Opus 4.8 for genuinely ambiguous flows.
Core Principles
Intent, not instructions — but only where churn earns it. The agent reads a goal and
finds its own path through the accessibility tree, so it survives a moved button or renamed
class that would break a selector. That resilience costs 2-5x the time and money of a
scripted run, so spend it on fast-changing UI and hard-to-locate flows, not on stable
critical paths.
An agent run is untrustworthy until it is deterministic. Same goal, same seeded app
must produce the same verdict. That requires temperature 0, a pinned model id, seeded data
with a reset, a bounded step budget, and an explicit pass/fail assertion. Without these you
have a coin flip, not a test.
The oracle lives outside the agent. Never let the LLM self-grade "looks good." Success
is a checkable assertion against the final browser_snapshot — specific expected text, a
URL, AND a forbidden-state negative check — evaluated by your harness, not the model.
Accessibility tree first, pixels last. browser_snapshot returns roles, refs, and
accessible names (~200-400 tokens) and is deterministic and cheap. Screenshots, pixel
coordinates, vision, and OCR are a scoped last resort for canvas only, never the default.
Graduation is the goal, not perpetual agent runs. Once a flow is stable, promote the
run to a durable scripted tests/*.spec.ts with role-based locators. An agent that has
been green for two weeks should become a fast, free regression test — keep the agent for
exploration, not for guarding a settled path.
Fit: Intent-Driven vs Scripted
The decision is per-flow, not per-project. Run risk-based-testing first if you need the
risk map; this table is the routing rule once you have it.
| Flow characteristic |
Use |
Why |
| Stable, high-frequency critical path (login, payment) |
Scripted + pinned (playwright-automation) |
Runs every PR; must be fast, free, and deterministic. No upside to re-exploring it. |
| Fast-changing / experimental UI (a dashboard that churns weekly, a redesign in flight) |
Agentic / intent-driven |
Selectors would break constantly; a goal survives layout churn. |
| Hard-to-locate flow you can't reliably select |
Agentic |
The agent finds the control by role/name instead of you reverse-engineering a selector. |
| Exploratory smoke / "does the happy path still work at all" |
Agentic |
One NL goal covers a lot of ground without a maintained script. |
| Anything in CI that must never falsely pass |
Scripted, OR agentic with a hard oracle |
Non-determinism is a false-pass risk you must actively cap. |
The rule, stated plainly: keep stable critical paths scripted and pinned; point
intent-driven agents at fast-changing UI and exploratory smoke. Do not move everything to the
agent — it is slower, costlier, and non-deterministic, and not every test should be agentic.
The Interaction Model (accessibility-tree-first)
Playwright MCP is not computer-use with screenshots and pixel coordinates. It is
accessibility-tree-first:
browser_navigate to the seeded entry URL.
browser_snapshot returns the accessibility tree — each interactive element as a
role, a stable ref, and its accessible name (from ARIA/labels). ~200-400 tokens.
- The agent picks an element by
ref and calls browser_click or browser_type.
browser_wait_for waits on text appearing/disappearing — never a fixed sleep.
- Re-
browser_snapshot after the DOM changes; assert against that tree.
Why not screenshots: the snapshot is token-efficient (thousands of tokens cheaper than an
image), deterministic (text refs, not fuzzy pixel matching), and needs no vision model or
OCR. Feeding screenshots as the primary input makes the run slower, pricier, and flakier.
browser_take_screenshot is for human evidence only, never as the assertion input.
See references/setup.md for the MCP registration, the full tool table, and the goal prompt.
Determinism: making a run trustworthy in CI
A run that passes once and fails the next with no app change is not yet a test. The fix is
never "just retry" or bumping temperature for "smarter" exploration — that adds variance. Pin
the variables instead:
| Lever |
Setting |
| Model |
Pinned model id (e.g. claude-haiku-4-5-20251001), never latest |
| Sampling |
temperature 0 — no creative wandering in CI |
| Data |
Seeded fixture + reset/seed the database before every run |
| Scope |
Bounded step budget (maxSteps), e.g. 18 — exceeding it FAILS, never auto-retries |
| Oracle |
Explicit pass/fail verdict asserted against the snapshot |
| Evidence |
Assert on the accessibility tree, never a screenshot diff |
Avoid: temperature: 0.7 or 1 for exploration, retry-until-pass loops,
waitForTimeout sleeps, and screenshot-based assertions. Each one hides flakiness rather than
removing it. Full harness config in references/setup.md.
Success Assertion: the Oracle (where agents fail silently)
This is the sharpest failure mode: the agent reports success while stuck on the login page,
because "page loaded / no error / looks good" was accepted as success and the LLM was allowed
to self-grade. Force an explicit oracle the harness checks — never the agent.
For the goal "sign in as an existing user and confirm the dashboard shows the right account name":
SUCCESS (all must hold — assert against the final browser_snapshot):
- URL matches /dashboard
- Snapshot contains the specific expected account name text, e.g. "Acme Corp — Jane R."
NEGATIVE / forbidden state (fail fast if any is true):
- Still on a URL matching /login → FAIL
- Snapshot contains role="alert" with "invalid credentials" → FAIL
VERDICT: harness emits {"passed": true|false}; the LLM does not decide.
The positive checks (specific account name + /dashboard URL) prove where it landed; the
negative check (must NOT be on the login page) is what kills the false pass. "No error,"
"didn't crash," "screenshot looks correct," and "trust the agent" are not success criteria.
Cost and Latency
Agent runs are 2-5x slower and pricier than scripted tests — a step is an LLM round-trip, the
dominant cost. Cut spend without losing coverage by going smaller, not bigger:
- Step budget — keep
maxSteps low and enforced; fewer round-trips, less drift.
- Model tiering — Haiku 4.5 / Sonnet 4.6 for cheap navigation steps; reserve Opus 4.8 for
genuinely ambiguous exploration. Don't run the biggest model on every step.
- Prompt caching — cache the static system prompt, tool schemas, and goal; they repeat
every run.
- Scope via a seeded entry point — one narrow goal per run, deep-linked past login instead
of re-driving it each time.
- Snapshot over screenshots — the a11y snapshot is ~200-400 tokens; a full-page screenshot
is thousands. Default to snapshot.
Backwards moves to reject: "use a bigger model / Opus 4.8 for every step," "raise the step
limit," "screenshot every step," and running with no budget at all. See references/setup.md.
Graduation and CI Gating
Promote a stabilized goal into a durable scripted test, and gate merges on the verdict. Both
are detailed in references/graduation-and-ci.md; the essentials:
- Graduate with Playwright Test Agents (planner / generator / healer, shipped in
Playwright v1.56.0).
npx playwright init-agents --loop=claude. The planner writes a
Markdown test plan to specs/<flow>.md; the generator turns it into tests/<flow>.spec.ts
with role-based locators (getByRole, getByLabel, getByText) verified against the live
DOM; the healer repairs broken locators. This is the promotion path — not "keep running it
as an agent," not recorded clicks, not page.locator('xpath=...'), not data-testid-only.
- Gate CI so a failed goal exits non-zero and emits a machine-readable verdict
(
{"passed": true|false} in result.json); the GitHub Actions job parses the boolean and
exit 1s on false. State is seeded/ephemeral and reset per run, with a step budget and a
timeout cap. Never continue-on-error: true, never "always exit 0," never a prose verdict a
human reads.
- Canvas with no accessibility tree: prefer instrumenting the canvas with ARIA; as a scoped
last resort enable
--caps=vision to unlock browser_mouse_click_xy for that flow only.
browser_snapshot will not work on a raw canvas, but don't make coordinates the default and
don't abandon agentic testing.
Migrating a brittle script to a goal (honest tradeoffs)
Converting an 80-line script that re-types login and walks 6 hardcoded steps into a single NL
goal with an explicit success assertion is a real win for a churning flow — but state
the downsides honestly:
- Non-determinism / false-pass risk — the run could pass falsely; that's why the hard
oracle and the negative check are non-negotiable.
- Cost/latency — 2-5x slower; bound it with a step budget and a seeded entry point.
- Not every test should be agentic — keep stable paths scripted, and plan to graduate
this one back to a scripted test once it stabilizes.
Reject the over-promise: it is not "strictly better with no downsides," do not "migrate
everything," and never drop the assertions to make it pass.
Anti-Patterns
1. Reflexively writing a scripted Playwright test
"Browser test" pattern-matches to codegen, so the default is page.goto / page.locator /
await expect(page...) / hunting data-testid. That misses the entire point. A goal-driven
agent reads NL intent and explores via browser_snapshot — no pre-written selectors.
2. "Use the agent for everything"
Over-selling the new toy. The agent is 2-5x slower and non-deterministic. Stable critical paths
(login) stay scripted and pinned; intent-driven wins on fast-changing UI. Never "always use the
agent" or "agents replace all scripted tests."
3. Fixing flakiness with retries or higher temperature
"Just retry" and bumping temperature for "smarter" exploration both add variance. The real
levers are temperature 0, a pinned model, seeded data, a bounded step budget, and an explicit
verdict.
4. Assuming computer-use = screenshots + pixel coordinates
Playwright MCP is accessibility-tree-first. Defaulting to vision, screenshots, OCR, or
mouse_click_xy is slower, costlier, and flakier. Pixels are a canvas-only last resort.
5. "No error = success" (the false pass)
Accepting "page loaded / didn't crash / looks good" and letting the LLM self-grade is exactly
why the agent reports success while stuck on login. Require specific expected text, a URL, and
a forbidden-state negative check, evaluated by the harness.
6. Bigger model / more steps to go faster
Backwards. Opus 4.8 on every step and raising maxSteps raise cost and latency without buying
reliability. Smaller models, tighter budgets, caching, and tighter scope are the fix.
7. Running an agent forever instead of graduating
A goal green for two weeks on a now-stable flow should become a scripted tests/*.spec.ts via
Playwright Test Agents. "Keep running it as an agent," recording clicks, and xpath locators are
all wrong promotions.
8. Prose verdict in CI
Returning a paragraph for a human to read, or continue-on-error: true, lets a failed goal
merge. The run must exit non-zero on failure with a machine-readable boolean.
Done When
- Goal prompt exists as natural-language intent (no
page.locator / page.goto /
data-testid in the goal) with a START seeded entry URL.
- An explicit success oracle is defined: specific expected text AND a URL check AND a
forbidden-state negative check, asserted against
browser_snapshot — not a screenshot.
- Run config pins a model id, sets
temperature: 0, a maxSteps budget, and a seed; no
waitForTimeout, no retry-until-pass.
- Interaction is snapshot-first:
browser_navigate / browser_snapshot /
browser_click / browser_type / browser_wait_for; screenshots used only for evidence.
- The runner emits
result.json with {"passed": true|false} and exit 1s on false; the CI
job gates the merge on the boolean (no continue-on-error, no always exit 0).
- CI seeds/resets ephemeral state per run and enforces a step budget and a timeout cap.
- A graduation trigger is recorded (e.g. "green for 2 weeks → run
init-agents, generate
tests/<flow>.spec.ts with getByRole locators").
- If any target is canvas/WebGL, the vision fallback (
--caps=vision +
browser_mouse_click_xy) is scoped to that flow only, or the canvas is instrumented with ARIA.
Related Skills
- playwright-automation — Writing and maintaining deterministic scripted Playwright tests
and Page Objects. Go there to author the durable test; this skill graduates an agent run into one.
- ai-system-testing — Testing your product's OWN LLM/AI features (prompt regression, model
output quality). This skill tests any app using an agent; it does not test your AI feature.
- exploratory-testing — Human SBTM exploration and bug hunting. The agentic smoke goal is
the automated cousin; use exploratory-testing for charter-driven manual sessions.
- test-reliability — Self-healing locators and quarantine for scripted flaky tests at
runtime. Complements the determinism levers here once a test has graduated.
- qa-project-context — The universal dependency; supplies stack, environments, seed/reset
tooling, and model access that every question above depends on.
Reference Files (in references/)
- setup.md — Playwright MCP registration (
.mcp.json), the snapshot tool table, the
natural-language goal prompt with success/negative assertions, the determinism harness
config (pinned model, temperature 0, maxSteps, seed, prompt cache), and cost/latency levers.
- graduation-and-ci.md — Playwright Test Agents promotion pipeline (planner →
specs/*.md,
generator → tests/*.spec.ts with role-based locators, healer), the GitHub Actions gating
workflow with a machine-readable boolean verdict, and the canvas --caps=vision fallback.
1---2name: agentic-browser-testing3description: Goal-driven E2E testing where a browser agent (Playwright MCP / computer-use) reads a natural-language goal and explores the app via the accessibility tree to assert outcomes — no pre-written script. Covers when intent-driven beats scripted, making agent runs deterministic (pinned model, temperature 0, seeded data, bounded steps, explicit success assertion, snapshot-not-pixel), cost/latency control, the accessibility-tree-first interaction model, CI gating, and graduating a stable run into a scripted Playwright test. Use when: "agentic browser test," "goal-driven browser test," "let an agent explore the app," "natural-language E2E," "browser agent smoke test," "Playwright MCP test." Not for: Writing/maintaining deterministic scripted Playwright tests — that is playwright-automation. Testing your product's OWN LLM features — that is ai-system-testing. Related: playwright-automation, ai-system-testing, exploratory-testing, test-reliability, qa-project-context.4license: MIT5---6
7<objective>
8A scripted Playwright test breaks the moment a button moves or a class renames; writing one
9for a dashboard that changes weekly is a maintenance treadmill. This skill stands up a
10goal-driven browser agent instead: it reads a natural-language goal, explores the app via the
11accessibility tree (Playwright MCP `browser_snapshot`), and asserts the outcome against an
12explicit oracle. The failure mode it prevents is the one that makes teams distrust agents — an
13agent that reports "success" while stuck on the login page because nothing forced it to prove
14where it landed. You leave with a deterministic, CI-gated agent run and a graduation path to a
15durable scripted test once the flow stabilizes.
16</objective>
17
18## Quick Route
19
20| Situation | Go to |
21|-----------|-------|
22| Stand up a goal-driven run from scratch | Discovery + `references/setup.md` |
23| Decide agentic vs scripted for a given flow | Fit: Intent-Driven vs Scripted |
24| Agent passes one run, fails the next | Determinism |
25| "How does it click without screenshots?" | Interaction Model |
26| Runs are slow / burning tokens | Cost and Latency |
27| Agent reports false success | Success Assertion (the Oracle) |
28| Flow is stable — make it permanent | Graduation → `references/graduation-and-ci.md` |
29| Block a merge on the goal | CI Gating → `references/graduation-and-ci.md` |
30| Canvas / no accessibility tree | Canvas Fallback → `references/graduation-and-ci.md` |
31
32## Discovery Questions
33
34First, check `.agents/qa-project-context.md` in the project root and skip anything it already
35answers (stack, environments, seed/reset tooling, model access).
36
371. **Which flow, and how often does its UI change?** Fast-changing/experimental UI favors
38 intent-driven; a stable critical path (login) favors scripted. This decides the whole approach.
392. **Is there a seeded fixture and a way to reset state?** Determinism is impossible without
40 seeded data and a per-run reset. If neither exists, that is step zero.
413. **Can you deep-link past auth to a seeded entry point?** Re-driving login every run is the
42 biggest avoidable cost; a seeded entry URL scopes the goal and cuts steps.
434. **What is the unambiguous success oracle?** Specific account text, a `/dashboard` URL, an
44 order number — plus a forbidden state. "No error" is not an oracle.
455. **Does the target render to canvas / WebGL?** No accessibility tree means snapshot-first
46 won't work; plan the vision fallback or instrument the canvas with ARIA.
476. **Which model and budget?** Pin a model id and a step budget up front; tier cheap steps to
48 Haiku 4.5 / Sonnet 4.6 and reserve Opus 4.8 for genuinely ambiguous flows.
49
50---
51
52## Core Principles
53
541. **Intent, not instructions — but only where churn earns it.** The agent reads a goal and
55 finds its own path through the accessibility tree, so it survives a moved button or renamed
56 class that would break a selector. That resilience costs 2-5x the time and money of a
57 scripted run, so spend it on fast-changing UI and hard-to-locate flows, not on stable
58 critical paths.
59
602. **An agent run is untrustworthy until it is deterministic.** Same goal, same seeded app
61 must produce the same verdict. That requires temperature 0, a pinned model id, seeded data
62 with a reset, a bounded step budget, and an explicit pass/fail assertion. Without these you
63 have a coin flip, not a test.
64
653. **The oracle lives outside the agent.** Never let the LLM self-grade "looks good." Success
66 is a checkable assertion against the final `browser_snapshot` — specific expected text, a
67 URL, AND a forbidden-state negative check — evaluated by your harness, not the model.
68
694. **Accessibility tree first, pixels last.** `browser_snapshot` returns roles, refs, and
70 accessible names (~200-400 tokens) and is deterministic and cheap. Screenshots, pixel
71 coordinates, vision, and OCR are a scoped last resort for canvas only, never the default.
72
735. **Graduation is the goal, not perpetual agent runs.** Once a flow is stable, promote the
74 run to a durable scripted `tests/*.spec.ts` with role-based locators. An agent that has
75 been green for two weeks should become a fast, free regression test — keep the agent for
76 exploration, not for guarding a settled path.
77
78---
79
80## Fit: Intent-Driven vs Scripted
81
82The decision is per-flow, not per-project. Run `risk-based-testing` first if you need the
83risk map; this table is the routing rule once you have it.
84
85| Flow characteristic | Use | Why |
86|---------------------|-----|-----|
87| Stable, high-frequency critical path (login, payment) | **Scripted + pinned** (`playwright-automation`) | Runs every PR; must be fast, free, and deterministic. No upside to re-exploring it. |
88| Fast-changing / experimental UI (a dashboard that churns weekly, a redesign in flight) | **Agentic / intent-driven** | Selectors would break constantly; a goal survives layout churn. |
89| Hard-to-locate flow you can't reliably select | **Agentic** | The agent finds the control by role/name instead of you reverse-engineering a selector. |
90| Exploratory smoke / "does the happy path still work at all" | **Agentic** | One NL goal covers a lot of ground without a maintained script. |
91| Anything in CI that must never falsely pass | Scripted, OR agentic **with a hard oracle** | Non-determinism is a false-pass risk you must actively cap. |
92
93**The rule, stated plainly:** keep stable critical paths scripted and pinned; point
94intent-driven agents at fast-changing UI and exploratory smoke. Do not move everything to the
95agent — it is slower, costlier, and non-deterministic, and not every test should be agentic.
96
97---
98
99## The Interaction Model (accessibility-tree-first)
100
101Playwright MCP is **not** computer-use with screenshots and pixel coordinates. It is
102accessibility-tree-first:
103
1041. `browser_navigate` to the seeded entry URL.
1052. `browser_snapshot` returns the **accessibility tree** — each interactive element as a
106 `role`, a stable `ref`, and its `accessible name` (from ARIA/labels). ~200-400 tokens.
1073. The agent picks an element by `ref` and calls `browser_click` or `browser_type`.
1084. `browser_wait_for` waits on text appearing/disappearing — never a fixed sleep.
1095. Re-`browser_snapshot` after the DOM changes; assert against that tree.
110
111Why not screenshots: the snapshot is **token-efficient** (thousands of tokens cheaper than an
112image), **deterministic** (text refs, not fuzzy pixel matching), and needs no vision model or
113OCR. Feeding screenshots as the primary input makes the run slower, pricier, and flakier.
114`browser_take_screenshot` is for human evidence only, never as the assertion input.
115
116See `references/setup.md` for the MCP registration, the full tool table, and the goal prompt.
117
118---
119
120## Determinism: making a run trustworthy in CI
121
122A run that passes once and fails the next with no app change is not yet a test. The fix is
123never "just retry" or bumping temperature for "smarter" exploration — that adds variance. Pin
124the variables instead:
125
126| Lever | Setting |
127|-------|---------|
128| Model | **Pinned model id** (e.g. `claude-haiku-4-5-20251001`), never `latest` |
129| Sampling | **temperature 0** — no creative wandering in CI |
130| Data | **Seeded fixture + reset/seed the database** before every run |
131| Scope | **Bounded step budget** (`maxSteps`), e.g. 18 — exceeding it FAILS, never auto-retries |
132| Oracle | **Explicit pass/fail verdict** asserted against the snapshot |
133| Evidence | Assert on the **accessibility tree**, never a screenshot diff |
134
135Avoid: `temperature: 0.7` or `1` for exploration, retry-until-pass loops,
136`waitForTimeout` sleeps, and screenshot-based assertions. Each one hides flakiness rather than
137removing it. Full harness config in `references/setup.md`.
138
139---
140
141## Success Assertion: the Oracle (where agents fail silently)
142
143This is the sharpest failure mode: the agent reports success while stuck on the login page,
144because "page loaded / no error / looks good" was accepted as success and the LLM was allowed
145to self-grade. Force an explicit oracle the harness checks — never the agent.
146
147For the goal *"sign in as an existing user and confirm the dashboard shows the right account name"*:
148
149```text
150SUCCESS (all must hold — assert against the final browser_snapshot):
151 - URL matches /dashboard
152 - Snapshot contains the specific expected account name text, e.g. "Acme Corp — Jane R."
153NEGATIVE / forbidden state (fail fast if any is true):
154 - Still on a URL matching /login → FAIL
155 - Snapshot contains role="alert" with "invalid credentials" → FAIL
156VERDICT: harness emits {"passed": true|false}; the LLM does not decide.
157```
158
159The positive checks (specific account name + `/dashboard` URL) prove where it landed; the
160**negative check** (must NOT be on the login page) is what kills the false pass. "No error,"
161"didn't crash," "screenshot looks correct," and "trust the agent" are not success criteria.
162
163---
164
165## Cost and Latency
166
167Agent runs are 2-5x slower and pricier than scripted tests — a step is an LLM round-trip, the
168dominant cost. Cut spend without losing coverage by going *smaller*, not *bigger*:
169
170- **Step budget** — keep `maxSteps` low and enforced; fewer round-trips, less drift.
171- **Model tiering** — Haiku 4.5 / Sonnet 4.6 for cheap navigation steps; reserve Opus 4.8 for
172 genuinely ambiguous exploration. Don't run the biggest model on every step.
173- **Prompt caching** — cache the static system prompt, tool schemas, and goal; they repeat
174 every run.
175- **Scope via a seeded entry point** — one narrow goal per run, deep-linked past login instead
176 of re-driving it each time.
177- **Snapshot over screenshots** — the a11y snapshot is ~200-400 tokens; a full-page screenshot
178 is thousands. Default to snapshot.
179
180Backwards moves to reject: "use a bigger model / Opus 4.8 for every step," "raise the step
181limit," "screenshot every step," and running with no budget at all. See `references/setup.md`.
182
183---
184
185## Graduation and CI Gating
186
187Promote a stabilized goal into a durable scripted test, and gate merges on the verdict. Both
188are detailed in `references/graduation-and-ci.md`; the essentials:
189
190- **Graduate** with **Playwright Test Agents** (planner / generator / healer, shipped in
191 Playwright **v1.56.0**). `npx playwright init-agents --loop=claude`. The **planner** writes a
192 Markdown test plan to `specs/<flow>.md`; the **generator** turns it into `tests/<flow>.spec.ts`
193 with **role-based locators** (`getByRole`, `getByLabel`, `getByText`) verified against the live
194 DOM; the **healer** repairs broken locators. This is the promotion path — not "keep running it
195 as an agent," not recorded clicks, not `page.locator('xpath=...')`, not data-testid-only.
196- **Gate CI** so a failed goal exits **non-zero** and emits a **machine-readable** verdict
197 (`{"passed": true|false}` in `result.json`); the GitHub Actions job parses the boolean and
198 `exit 1`s on false. State is seeded/ephemeral and reset per run, with a step budget and a
199 timeout cap. Never `continue-on-error: true`, never "always exit 0," never a prose verdict a
200 human reads.
201- **Canvas with no accessibility tree:** prefer instrumenting the canvas with ARIA; as a scoped
202 last resort enable `--caps=vision` to unlock `browser_mouse_click_xy` for that flow only.
203 `browser_snapshot` will not work on a raw canvas, but don't make coordinates the default and
204 don't abandon agentic testing.
205
206---
207
208## Migrating a brittle script to a goal (honest tradeoffs)
209
210Converting an 80-line script that re-types login and walks 6 hardcoded steps into a single NL
211**goal** with an **explicit success assertion** is a real win for a churning flow — but state
212the downsides honestly:
213
214- **Non-determinism / false-pass risk** — the run could pass falsely; that's why the hard
215 oracle and the negative check are non-negotiable.
216- **Cost/latency** — 2-5x slower; bound it with a **step budget** and a seeded entry point.
217- **Not every test should be agentic** — keep stable paths scripted, and plan to **graduate**
218 this one back to a scripted test once it stabilizes.
219
220Reject the over-promise: it is **not** "strictly better with no downsides," do **not** "migrate
221everything," and never drop the assertions to make it pass.
222
223---
224
225## Anti-Patterns
226
227### 1. Reflexively writing a scripted Playwright test
228"Browser test" pattern-matches to codegen, so the default is `page.goto` / `page.locator` /
229`await expect(page...)` / hunting `data-testid`. That misses the entire point. A goal-driven
230agent reads NL intent and explores via `browser_snapshot` — no pre-written selectors.
231
232### 2. "Use the agent for everything"
233Over-selling the new toy. The agent is 2-5x slower and non-deterministic. Stable critical paths
234(login) stay scripted and pinned; intent-driven wins on fast-changing UI. Never "always use the
235agent" or "agents replace all scripted tests."
236
237### 3. Fixing flakiness with retries or higher temperature
238"Just retry" and bumping temperature for "smarter" exploration both add variance. The real
239levers are temperature 0, a pinned model, seeded data, a bounded step budget, and an explicit
240verdict.
241
242### 4. Assuming computer-use = screenshots + pixel coordinates
243Playwright MCP is accessibility-tree-first. Defaulting to vision, screenshots, OCR, or
244`mouse_click_xy` is slower, costlier, and flakier. Pixels are a canvas-only last resort.
245
246### 5. "No error = success" (the false pass)
247Accepting "page loaded / didn't crash / looks good" and letting the LLM self-grade is exactly
248why the agent reports success while stuck on login. Require specific expected text, a URL, and
249a forbidden-state negative check, evaluated by the harness.
250
251### 6. Bigger model / more steps to go faster
252Backwards. Opus 4.8 on every step and raising `maxSteps` raise cost and latency without buying
253reliability. Smaller models, tighter budgets, caching, and tighter scope are the fix.
254
255### 7. Running an agent forever instead of graduating
256A goal green for two weeks on a now-stable flow should become a scripted `tests/*.spec.ts` via
257Playwright Test Agents. "Keep running it as an agent," recording clicks, and xpath locators are
258all wrong promotions.
259
260### 8. Prose verdict in CI
261Returning a paragraph for a human to read, or `continue-on-error: true`, lets a failed goal
262merge. The run must exit non-zero on failure with a machine-readable boolean.
263
264---
265
266## Done When
267
268- Goal prompt exists as natural-language intent (no `page.locator` / `page.goto` /
269 `data-testid` in the goal) with a START seeded entry URL.
270- An explicit success oracle is defined: specific expected text AND a URL check AND a
271 forbidden-state negative check, asserted against `browser_snapshot` — not a screenshot.
272- Run config pins a model id, sets `temperature: 0`, a `maxSteps` budget, and a seed; no
273 `waitForTimeout`, no retry-until-pass.
274- Interaction is snapshot-first: `browser_navigate` / `browser_snapshot` /
275 `browser_click` / `browser_type` / `browser_wait_for`; screenshots used only for evidence.
276- The runner emits `result.json` with `{"passed": true|false}` and `exit 1`s on false; the CI
277 job gates the merge on the boolean (no `continue-on-error`, no `always exit 0`).
278- CI seeds/resets ephemeral state per run and enforces a step budget and a timeout cap.
279- A graduation trigger is recorded (e.g. "green for 2 weeks → run `init-agents`, generate
280 `tests/<flow>.spec.ts` with `getByRole` locators").
281- If any target is canvas/WebGL, the vision fallback (`--caps=vision` +
282 `browser_mouse_click_xy`) is scoped to that flow only, or the canvas is instrumented with ARIA.
283
284---
285
286## Related Skills
287
288- **playwright-automation** — Writing and maintaining deterministic scripted Playwright tests
289 and Page Objects. Go there to author the durable test; this skill graduates an agent run into one.
290- **ai-system-testing** — Testing your product's OWN LLM/AI features (prompt regression, model
291 output quality). This skill tests any app *using* an agent; it does not test your AI feature.
292- **exploratory-testing** — Human SBTM exploration and bug hunting. The agentic smoke goal is
293 the automated cousin; use exploratory-testing for charter-driven manual sessions.
294- **test-reliability** — Self-healing locators and quarantine for *scripted* flaky tests at
295 runtime. Complements the determinism levers here once a test has graduated.
296- **qa-project-context** — The universal dependency; supplies stack, environments, seed/reset
297 tooling, and model access that every question above depends on.
298
299## Reference Files (in `references/`)
300
301- **setup.md** — Playwright MCP registration (`.mcp.json`), the snapshot tool table, the
302 natural-language goal prompt with success/negative assertions, the determinism harness
303 config (pinned model, temperature 0, maxSteps, seed, prompt cache), and cost/latency levers.
304- **graduation-and-ci.md** — Playwright Test Agents promotion pipeline (planner → `specs/*.md`,
305 generator → `tests/*.spec.ts` with role-based locators, healer), the GitHub Actions gating
306 workflow with a machine-readable boolean verdict, and the canvas `--caps=vision` fallback.