[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-browserbase-ui-test":3,"mdc--9fx1ck-key":37,"related-repo-browserbase-ui-test":6484,"related-org-browserbase-ui-test":6605},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":26,"repoUrl":27,"updatedAt":28,"license":29,"forks":30,"topics":31,"repo":32,"sourceUrl":35,"mdContent":36},"ui-test","run adversarial UI tests","AI-powered adversarial UI testing via the browse CLI. Analyzes git diffs to test only what changed, or explores the full app to find bugs. Tests functional correctness, accessibility, responsive layout, and UX heuristics. Use when the user asks to test UI changes, QA a pull request, audit accessibility, or run exploratory testing. Supports local browser (localhost) and remote Browserbase (deployed sites).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"browserbase","Browserbase","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fbrowserbase.png",[12,16,19,20,23],{"name":13,"slug":14,"type":15},"Accessibility","accessibility","tag",{"name":17,"slug":18,"type":15},"E2E Testing","e2e-testing",{"name":9,"slug":8,"type":15},{"name":21,"slug":22,"type":15},"Browser Automation","browser-automation",{"name":24,"slug":25,"type":15},"UI Testing","ui-testing",3649,"https:\u002F\u002Fgithub.com\u002Fbrowserbase\u002Fskills","2026-04-06T18:06:27.20774","MIT",232,[],{"repoUrl":27,"stars":26,"forks":30,"topics":33,"description":34},[],"Browserbase's official collection of agent skills to access the web.","https:\u002F\u002Fgithub.com\u002Fbrowserbase\u002Fskills\u002Ftree\u002FHEAD\u002Fskills\u002Fui-test","---\nname: ui-test\ndescription: \"AI-powered adversarial UI testing via the browse CLI. Analyzes git diffs to test only what changed, or explores the full app to find bugs. Tests functional correctness, accessibility, responsive layout, and UX heuristics. Use when the user asks to test UI changes, QA a pull request, audit accessibility, or run exploratory testing. Supports local browser (localhost) and remote Browserbase (deployed sites).\"\nlicense: MIT\nmetadata:\n  author: browserbase\n  version: \"0.4.0\"\nallowed-tools: Bash Read Glob Grep Agent\ncompatibility: \"Requires the browse CLI (`npm install -g browse`). For remote testing: BROWSERBASE_API_KEY and cookie-sync skill.\"\n---\n\n# UI Test — Agentic UI Testing Skill\n\nTest UI changes in a real browser. Your job is to **try to break things**, not confirm they work.\n\nThree workflows:\n- **Diff-driven** — analyze a git diff, test only what changed\n- **Exploratory** — navigate the app, find bugs the developer didn't think about\n- **Parallel** — fan out independent test groups across multiple Browserbase browsers\n\n## How Testing Works\n\nThe main agent **coordinates** — it plans test strategy, delegates to sub-agents, and merges results. Sub-agents do the actual browser testing.\n\n### Planning: multiple angles, then execute once\n\n**You MUST complete all three planning rounds yourself and output them before launching any sub-agents.** Planning happens in your own response — it is NOT delegated to sub-agents. Do not skip ahead to execution.\n\n**Round 1 — Functional:** What are the core user flows? What should work? Write out each test as: action → expected result.\n\n**Round 2 — Adversarial:** Re-read Round 1. What did you miss? Think about: different user types\u002Froles, error paths, empty states, race conditions, edge inputs (empty, huge, special chars, rapid clicks).\n\n**Round 3 — Coverage gaps:** Re-read Rounds 1–2. What about: accessibility (axe-core, keyboard-only), mobile viewports, console errors, visual consistency with the rest of the app?\n\n**Deduplicate:** Merge all three rounds into one numbered list of tests. Remove overlaps. Assign each test to a group (e.g. Group A, Group B).\n\n**Then execute once** — launch one sub-agent per group. Each sub-agent receives its specific list of tests to run, nothing more. Sub-agents do not explore or plan — they execute assigned tests and report results.\n\nOutput the three rounds, the merged plan, and the group assignments in your response before calling any Agent tool.\n\n### Principles for splitting work\n\n- **Sub-agents run assigned tests, not open exploration.** The main agent hands each sub-agent a specific numbered list of tests. Sub-agents do not plan, explore, or decide what to test — they execute the list and stop.\n- **The bottleneck is the slowest agent** — split work so no single agent has a disproportionate share. Many small agents > few large ones.\n- **Size the effort to the change** — a single component fix doesn't need many agents or many steps. A full-page redesign does. Let the scope of the diff drive the plan.\n- **No early stopping on failures** — find as many bugs as possible within the assigned tests.\n\n### Giving sub-agents a step budget\n\n**The main agent MUST include an explicit browse step limit in every sub-agent prompt.** Sub-agents do not self-limit — they will run until done unless told otherwise.\n\nAs a rough heuristic: ~25 steps for a few targeted checks, ~40 for a full page with functional + adversarial + a11y, ~75 for multiple pages or a broad category. **Adjust based on what the assigned tests actually require** — these are starting points, not rules.\n\nAs a rough heuristic: ~25 steps for a few targeted checks, ~40 for a full page with functional + adversarial + a11y, ~75 for multiple pages or a broad category. **Adjust based on what the assigned tests actually require** — these are starting points, not rules.\n\nEvery sub-agent prompt must include:\n```\nYou have a budget of N browse steps (each `browse` command = 1 step). Count your steps as you go. When you reach N, stop immediately and report:\n- STEP_PASS\u002FSTEP_FAIL for every test you completed\n- STEP_SKIP|\u003Ctest-id>|budget reached for every test you didn't get to\n\nDo not retry or continue after hitting the budget.\nRun only these tests: [numbered list from the merged plan]\nDo not explore beyond the assigned tests.\nDo NOT generate an HTML report or write any files. Return only step markers and your findings as text.\n```\n\nThe main agent should NOT run `browse` commands itself (except to verify the dev server is up). All testing happens in sub-agents.\n\n**When a sub-agent hits its budget, the main agent accepts the partial results as-is.** Do not re-run or retry the sub-agent. Include SKIPPED tests in the final report so the developer knows what wasn't covered.\n\n### Reporting\n\n**Every sub-agent reports back with:**\n```\nTests: 8 | Passed: 5 | Failed: 2 | Skipped: 1 | Pages visited: 2\n```\n\n**The main agent merges into a final report with:**\n```\nTests: 20 | Passed: 14 | Failed: 4 | Skipped: 2 | Agents: 3 | Pass rate: 70%\n```\n\nDo not report \"steps used\" — browse command counts are implementation plumbing, not a meaningful metric for reviewers.\n\n## Testing Philosophy\n\n**You are an adversarial tester.** Your goal is to find bugs, not prove correctness.\n\n- **Try to break every feature you test.** Don't just check \"does the button exist?\" — click it twice rapidly, submit empty forms, paste 500 characters, press Escape mid-flow.\n- **Test what the developer didn't think about.** Empty states, error recovery, keyboard-only navigation, mobile overflow.\n- **Every assertion must be evidence-based.** Compare before\u002Fafter snapshots. Check specific elements by ref. Never report PASS without concrete evidence from the accessibility tree or a deterministic check.\n- **Report failures with enough detail to reproduce.** Include the exact action, what you expected, what you got, and a suggested fix.\n\n## Assertion Protocol\n\nEvery test step MUST produce a structured assertion. Do not write freeform \"this looks good.\"\n\n### Step markers\n\nFor each test step, emit exactly one marker:\n\n```\nSTEP_PASS|\u003Cstep-id>|\u003Cevidence>\n```\nor\n```\nSTEP_FAIL|\u003Cstep-id>|\u003Cexpected> → \u003Cactual>|\u003Cscreenshot-path>\n```\n\n- `step-id`: short identifier like `homepage-cta`, `form-validation-error`, `modal-cancel`\n- `evidence`: what you observed that proves the step passed (element ref, text content, URL, eval result)\n- `expected → actual`: what you expected vs what you got\n- `screenshot-path`: path to the saved screenshot (failures only — see Screenshot Capture below)\n\n### Screenshot Capture for Failures\n\n**Every STEP_FAIL MUST have an accompanying screenshot** so the developer can see what went wrong visually.\n\nWhen a test step fails:\n\n```bash\n# 1. Take a screenshot immediately after observing the failure\nbrowse screenshot --path .context\u002Fui-test-screenshots\u002F\u003Cstep-id>.png\n\n# If --path is not supported, take the screenshot and save manually:\nbrowse screenshot\n# The browse CLI will output the screenshot path — move\u002Fcopy it:\ncp \u002Ftmp\u002Fbrowse-screenshot-*.png .context\u002Fui-test-screenshots\u002F\u003Cstep-id>.png\n```\n\nSetup the screenshot directory at the start of any test run:\n\n```bash\nmkdir -p .context\u002Fui-test-screenshots\n```\n\n**Rules:**\n- File name = step-id (e.g., `double-submit.png`, `axe-audit.png`, `modal-focus-trap.png`)\n- Store in `.context\u002Fui-test-screenshots\u002F` — this directory is gitignored and accessible to the developer and other agents\n- For parallel runs, include the session name: `\u003Csession>-\u003Cstep-id>.png` (e.g., `signup-double-submit.png`)\n- Take the screenshot at the moment of failure — capture the broken state, not after recovery\n- For visual\u002Flayout bugs, also screenshot the baseline (working state) for comparison: `\u003Cstep-id>-baseline.png`\n\n### How to verify (in order of rigor)\n\n1. **Deterministic check** (strongest) — `browse eval` returns structured data you can inspect. Examples: axe-core violation count, `document.title`, form field value, console error array, element count.\n2. **Snapshot element match** — a specific element with a specific role and text exists in the accessibility tree. Check by ref: `@0-12 button \"Save\"`. An element either exists in the tree or it doesn't.\n3. **Before\u002Fafter comparison** — snapshot before action, act, snapshot after. Verify the tree changed in the expected way (element appeared, disappeared, text changed).\n4. **Screenshot + visual judgment** (weakest) — only for visual-only properties (color, spacing, layout) that the accessibility tree cannot capture. Always accompany with what specifically you're evaluating.\n\n### Before\u002Fafter comparison pattern\n\nThis is the core verification loop. Use it for every interaction:\n\n```bash\n# 1. BEFORE: capture state\nbrowse snapshot\n# Record: what elements exist, their text, their refs\n\n# 2. ACT: perform the interaction\nbrowse click @0-12\n\n# 3. AFTER: capture new state\nbrowse snapshot\n# Compare: what changed? What appeared? What disappeared?\n\n# 4. ASSERT: emit marker based on comparison\n# If dialog appeared: STEP_PASS|modal-open|dialog \"Confirm\" appeared at @0-20\n# If nothing changed:\nbrowse screenshot --path .context\u002Fui-test-screenshots\u002Fmodal-open.png\n# STEP_FAIL|modal-open|expected dialog to appear → snapshot unchanged|.context\u002Fui-test-screenshots\u002Fmodal-open.png\n```\n\n## Setup\n\n```bash\nwhich browse || npm install -g browse\n```\n\n### Avoid permission fatigue\n\nThis skill runs many `browse` commands (snapshots, clicks, evals). To avoid approving each one, add `browse` to your allowed commands:\n\nAdd both patterns to `.claude\u002Fsettings.json` (project-level) or `~\u002F.claude\u002Fsettings.json` (user-level):\n```json\n{\n  \"permissions\": {\n    \"allow\": [\n      \"Bash(browse:*)\",\n      \"Bash(BROWSE_SESSION=*)\"\n    ]\n  }\n}\n```\n\nThe first pattern covers plain `browse` commands. The second covers parallel sessions (`BROWSE_SESSION=signup browse open ...`). Both are needed to avoid approval prompts.\n\n## Mode Selection\n\n| Target | Mode | Command | Auth |\n|--------|------|---------|------|\n| `localhost` \u002F `127.0.0.1` | Local | `browse open \u003Curl> --local` | None needed (clean isolated local browser by default) |\n| Deployed\u002Fstaging site | Remote | `browse open \u003Curl> --remote` | Browserbase credentials; use contexts where supported |\n\n**Rule: If the target URL contains `localhost` or `127.0.0.1`, pass `--local` on the first `browse open`.**\n\n### Local Mode (default for localhost)\n\n```bash\nbrowse open http:\u002F\u002Flocalhost:3000 --local\n```\n\n`browse open ... --local` uses a clean isolated local browser by default, which is best for reproducible localhost QA runs.\n\nUse local-mode variants only when needed:\n\n- `browse open \u003Curl> --auto-connect` — auto-discover an existing debuggable local Chrome. Use this only when the test explicitly needs existing local login\u002Fcookies\u002Fstate.\n- `browse open \u003Curl> --cdp \u003Cport|url>` — attach to a specific CDP target (explicit local browser attach).\n\n### Remote Mode (deployed sites via cookie-sync)\n\n```bash\n# Step 1: Sync cookies from local Chrome to Browserbase\nnode .claude\u002Fskills\u002Fcookie-sync\u002Fscripts\u002Fcookie-sync.mjs --domains your-app.com\n# Output: Context ID: ctx_abc123\n\n# Step 2: Open in remote mode with the synced context\nSESSION_JSON=\"$(browse cloud sessions create --context-id ctx_abc123 --persist --keep-alive)\"\nSESSION_ID=\"$(echo \"$SESSION_JSON\" | jq -r .id)\"\nCONNECT_URL=\"$(echo \"$SESSION_JSON\" | jq -r .connectUrl)\"\n\nbrowse open https:\u002F\u002Fstaging.your-app.com --cdp \"$CONNECT_URL\"\nbrowse snapshot\n# ... run tests ...\nbrowse stop\nbrowse cloud sessions update \"$SESSION_ID\" --status REQUEST_RELEASE\n```\n\nCookie-sync flags: `--domains`, `--context`, `--verified`, `--proxy \"City,ST,US\"`\n\n## Workflow A: Diff-Driven Testing\n\n### Phase 1: Analyze the diff\n\n```bash\ngit diff --name-only HEAD~1          # or: git diff --name-only \u002F git diff --name-only main...HEAD\ngit diff HEAD~1 -- \u003Cfile>            # read actual changes\n```\n\nCategorize changed files:\n\n| File pattern | UI impact | What to test |\n|-------------|-----------|--------------|\n| `*.tsx`, `*.jsx`, `*.vue`, `*.svelte` | Component | Render, interaction, state, edge cases |\n| `pages\u002F**`, `app\u002F**`, `src\u002Froutes\u002F**` | Route\u002Fpage | Navigation, page load, content, 404 handling |\n| `*.css`, `*.scss`, `*.module.css` | Style | Visual appearance (screenshot), responsive |\n| `*form*`, `*input*`, `*field*` | Form | Validation, submission, empty input, long input, special chars |\n| `*modal*`, `*dialog*`, `*dropdown*` | Interactive | Open\u002Fclose, escape, focus trap, cancel vs confirm |\n| `*nav*`, `*menu*`, `*header*` | Navigation | Links, active states, routing, keyboard nav |\n| Non-UI files only | None | Skip — report \"no UI tests needed\" |\n\n### Phase 2: Map files to URLs\n\nDetect framework: `cat package.json | grep -E '\"(next|react|vue|nuxt|svelte|@sveltejs|angular|vite)\"'`\n\n| Framework | Default port | File → URL pattern |\n|-----------|-------------|-----|\n| Next.js App Router | 3000 | `app\u002Fdashboard\u002Fpage.tsx` → `\u002Fdashboard` |\n| Next.js Pages Router | 3000 | `pages\u002Fabout.tsx` → `\u002Fabout` |\n| Vite | 5173 | Check router config |\n| Nuxt | 3000 | `pages\u002Findex.vue` → `\u002F` |\n| SvelteKit | 5173 | `src\u002Froutes\u002F+page.svelte` → `\u002F` |\n| Angular | 4200 | Check routing module |\n\n### Phase 3: Ensure the right code is running\n\nBefore testing, verify the dev server is serving the code from the diff — not a stale branch.\n\n**If testing a PR or specific branch:**\n```bash\n# Check what branch is currently checked out\ngit branch --show-current\n\n# If it's not the PR branch, switch to it\ngit fetch origin \u003Cbranch> && git checkout \u003Cbranch>\n\n# Install deps — the lockfile may differ between branches\nyarn install  # or npm install \u002F pnpm install\n```\n\nIf the dev server was already running on a different branch, restart it after checkout.\n\n**Find a running dev server:**\n```bash\nfor port in 3000 3001 5173 4200 8080 8000 5000; do\n  s=$(curl -s -o \u002Fdev\u002Fnull -w \"%{http_code}\" \"http:\u002F\u002Flocalhost:$port\" 2>\u002Fdev\u002Fnull)\n  if [ \"$s\" != \"000\" ]; then echo \"Dev server on port $port (HTTP $s)\"; fi\ndone\n```\n\nIf nothing found: tell the user to start their dev server.\n\n**Verify it actually renders:**\nAfter `browse open` + `browse snapshot`, check that the accessibility tree contains real page content (navigation, headings, interactive elements) — not just an error overlay or empty body. Next.js dev servers can return HTTP 200 while showing a full-screen build error dialog. If the snapshot is empty or dominated by an error dialog, the server is broken — fix the build before testing.\n\n### Phase 4: Generate test plan\n\nFor each changed area, plan **both happy path AND adversarial tests**:\n\n```\nTest Plan (based on git diff)\n=============================\nChanged: src\u002Fcomponents\u002FSignupForm.tsx (added email validation)\n\n1. [happy] Valid email submits successfully\n   URL: http:\u002F\u002Flocalhost:3000\u002Fsignup\n   Steps: fill valid email → submit → verify success message appears\n\n2. [adversarial] Invalid email shows error\n   Steps: fill \"not-an-email\" → submit → verify error message appears\n\n3. [adversarial] Empty form submission\n   Steps: click submit without filling anything → verify error, no crash\n\n4. [adversarial] XSS in email field\n   Steps: fill \"\u003Cscript>alert(1)\u003C\u002Fscript>\" → submit → verify sanitized\u002Frejected\n\n5. [adversarial] Rapid double-submit\n   Steps: click submit twice quickly → verify no duplicate submission\n\n6. [adversarial] Keyboard-only flow\n   Steps: Tab to email → type → Tab to submit → Enter → verify success\n```\n\n### Phase 5: Execute tests\n\n```bash\nbrowse stop 2>\u002Fdev\u002Fnull\nmkdir -p .context\u002Fui-test-screenshots\n# localhost\u002Fdefault QA → clean, reproducible local run\nbrowse open http:\u002F\u002Flocalhost:3000 --local\n```\n\nFor each test, follow the **before\u002Fafter pattern**:\n\n```bash\n# Navigate\nbrowse open http:\u002F\u002Flocalhost:3000\u002Fpath --local\nbrowse wait load\n\n# BEFORE snapshot\nbrowse snapshot\n# Note the current state: elements, refs, text\n\n# ACT\nbrowse click @0-ref\n# or: browse fill \"selector\" \"value\"\n# or: browse type \"text\"\n# or: browse press Enter\n\n# AFTER snapshot\nbrowse snapshot\n# Compare against BEFORE: what changed?\n\n# ASSERT with marker\n# STEP_PASS|step-id|evidence  OR  STEP_FAIL|step-id|expected → actual\n```\n\n### Phase 6: Report results\n\n```\n## UI Test Results\n\n### STEP_PASS|valid-email-submit|status \"Thanks!\" appeared at @0-42 after submit\n- URL: http:\u002F\u002Flocalhost:3000\u002Fsignup\n- Before: form with email input @0-3, submit button @0-7\n- Action: filled \"user@test.com\", clicked @0-7\n- After: form replaced by status element with \"Thanks! We'll be in touch.\"\n\n### STEP_FAIL|double-submit|expected single submission → form submitted twice|.context\u002Fui-test-screenshots\u002Fdouble-submit.png\n- URL: http:\u002F\u002Flocalhost:3000\u002Fsignup\n- Before: form with submit button @0-7\n- Action: clicked @0-7 twice rapidly\n- After: two success toasts appeared, suggesting duplicate submission\n- Screenshot: .context\u002Fui-test-screenshots\u002Fdouble-submit.png\n- Suggestion: disable submit button after first click, or debounce the handler\n\n---\n**Summary: 4\u002F6 passed, 2 failed**\nFailed: double-submit, xss-sanitization\n\nScreenshots saved to `.context\u002Fui-test-screenshots\u002F` — open any failed step's screenshot to see the broken state.\n```\n\nAlways `browse stop` when done.\n\n### Phase 7: Generate HTML report\n\nAfter producing the text report, generate a standalone HTML report that a reviewer can open in a browser. The report embeds screenshots inline (base64) so it works as a single file — no external dependencies.\n\n**Why:** Text reports are good for the agent conversation, but reviewers (PMs, designers, other engineers) want a visual artifact they can open, scan, and share. Screenshots inline make failures immediately obvious.\n\n#### How to generate\n\n1. Read the HTML template at [references\u002Freport-template.html](references\u002Freport-template.html)\n2. Build the report by replacing the template placeholders with actual test data:\n\n| Placeholder | Value |\n|-------------|-------|\n| `{{TITLE}}` | Report title for `\u003Ctitle>` tag (e.g., \"UI Test: PR #1234 — OAuth Settings\") |\n| `{{TITLE_HTML}}` | Report title for the visible `\u003Ch1>`. If a PR URL is available, wrap the PR reference in an `\u003Ca>` tag so it's clickable (e.g., `UI Test: \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Forg\u002Frepo\u002Fpull\u002F1234\">PR #1234\u003C\u002Fa> — OAuth Settings`). If no URL, use plain text same as `{{TITLE}}`. |\n| `{{META}}` | One-line context: date, app URL, user, branch |\n| `{{TOTAL_TESTS}}` | Total STEP_PASS + STEP_FAIL count |\n| `{{AGENT_COUNT}}` | Number of sub-agents that ran |\n| `{{PASS_COUNT}}` | Number of STEP_PASS |\n| `{{FAIL_COUNT}}` | Number of STEP_FAIL |\n| `{{PASS_RATE}}` | Integer percentage (e.g., \"92\") |\n| `{{RATE_CLASS}}` | `good` (≥90%), `warn` (70–89%), `bad` (\u003C70%) |\n| `{{FAILURES_SECTION}}` | HTML for failed test cards (see below) |\n| `{{PASSES_SECTION}}` | HTML for passed test cards (see below) |\n\n3. For each test result, generate a `\u003Cdetails>` card. Failed tests should be **open by default** so reviewers see them immediately:\n\n```html\n\u003C!-- Failed test card (open by default) -->\n\u003Cdiv class=\"section\">\n  \u003Ch2>Failures \u003Cspan class=\"count\">{{FAIL_COUNT}}\u003C\u002Fspan>\u003C\u002Fh2>\n  \u003Cdetails class=\"test-card fail\" open>\n    \u003Csummary>\n      \u003Cspan class=\"badge fail\">FAIL\u003C\u002Fspan>\n      \u003Cspan class=\"step-id\">step-id-here\u003C\u002Fspan>\n      \u003Cspan class=\"evidence\">expected → actual\u003C\u002Fspan>\n    \u003C\u002Fsummary>\n    \u003Cdiv class=\"body\">\n      \u003Cdl>\n        \u003Cdt>URL\u003C\u002Fdt>\u003Cdd>http:\u002F\u002Flocalhost:3000\u002Fpath\u003C\u002Fdd>\n        \u003Cdt>Action\u003C\u002Fdt>\u003Cdd>What was done\u003C\u002Fdd>\n        \u003Cdt>Expected\u003C\u002Fdt>\u003Cdd>What should have happened\u003C\u002Fdd>\n        \u003Cdt>Actual\u003C\u002Fdt>\u003Cdd>What happened instead\u003C\u002Fdd>\n      \u003C\u002Fdl>\n      \u003Cdiv class=\"suggestion\">Fix: description of suggested fix\u003C\u002Fdiv>\n      \u003Cdiv class=\"screenshot\">\n        \u003Cimg src=\"data:image\u002Fpng;base64,...\" alt=\"Screenshot of failure\">\n        \u003Cdiv class=\"caption\">step-id.png — captured at moment of failure\u003C\u002Fdiv>\n      \u003C\u002Fdiv>\n    \u003C\u002Fdiv>\n  \u003C\u002Fdetails>\n\u003C\u002Fdiv>\n\n\u003C!-- Passed test card (collapsed by default) -->\n\u003Cdiv class=\"section\">\n  \u003Ch2>Passed \u003Cspan class=\"count\">{{PASS_COUNT}}\u003C\u002Fspan>\u003C\u002Fh2>\n  \u003Cdetails class=\"test-card pass\">\n    \u003Csummary>\n      \u003Cspan class=\"badge pass\">PASS\u003C\u002Fspan>\n      \u003Cspan class=\"step-id\">step-id-here\u003C\u002Fspan>\n      \u003Cspan class=\"evidence\">evidence summary\u003C\u002Fspan>\n    \u003C\u002Fsummary>\n    \u003Cdiv class=\"body\">\n      \u003Cdl>\n        \u003Cdt>URL\u003C\u002Fdt>\u003Cdd>http:\u002F\u002Flocalhost:3000\u002Fpath\u003C\u002Fdd>\n        \u003Cdt>Evidence\u003C\u002Fdt>\u003Cdd>What was observed\u003C\u002Fdd>\n      \u003C\u002Fdl>\n    \u003C\u002Fdiv>\n  \u003C\u002Fdetails>\n\u003C\u002Fdiv>\n```\n\n4. **Embed screenshots as base64** so the HTML is fully self-contained:\n\n```bash\n# Convert screenshot to base64 data URI\nbase64 -i .context\u002Fui-test-screenshots\u002Fstep-id.png | tr -d '\\n'\n# Use as: src=\"data:image\u002Fpng;base64,\u003Coutput>\"\n```\n\nRead each screenshot file referenced in STEP_FAIL markers, base64-encode it, and embed it as an `\u003Cimg src=\"data:image\u002Fpng;base64,...\">` in the corresponding test card. For STEP_PASS, only embed a screenshot if one was explicitly taken (e.g., baseline screenshots).\n\n5. Write the final HTML to `.context\u002Fui-test-report.html`:\n\n```bash\n# Write the generated HTML\ncat > .context\u002Fui-test-report.html \u003C\u003C 'REPORT_EOF'\n\u003C!DOCTYPE html>\n...generated report...\nREPORT_EOF\n\n# Open it for the reviewer\nopen .context\u002Fui-test-report.html  # macOS\n# xdg-open .context\u002Fui-test-report.html  # Linux\n```\n\n6. Tell the user: `Report saved to .context\u002Fui-test-report.html` and offer to open it.\n\n**Rules:**\n- Failures section comes before passes — reviewers care about what's broken first\n- Failed cards are `open` by default; passed cards are collapsed\n- Every STEP_FAIL card MUST have an embedded screenshot — if the screenshot file is missing, note it in the card\n- Include the suggestion\u002Ffix in each failure card if one was provided\n- The report must work offline — no CDN links, no external assets\n- Keep the HTML under 5MB — if screenshots push it over, reduce image quality or skip baseline screenshots for passes\n\n## Adversarial Test Patterns\n\nApply these to every interactive element you test. Read [references\u002Fadversarial-patterns.md](references\u002Fadversarial-patterns.md) for the full pattern library (forms, modals, navigation, error states, keyboard accessibility).\n\n## Deterministic Checks\n\nThese produce structured data, not judgment calls. Use them as the strongest form of assertion.\n\n| Check | What it catches | Assertion |\n|-------|----------------|-----------|\n| axe-core | WCAG violations | `violations.length === 0` |\n| Console errors | Runtime exceptions, failed requests | empty error array |\n| Broken images | Missing\u002Ffailed image loads | no images with `naturalWidth === 0` |\n| Form labels | Inputs without accessible labels | every input has `hasLabel: true` |\n\nFor the exact `browse eval` recipes, read [references\u002Fbrowser-recipes.md](references\u002Fbrowser-recipes.md).\n\n## Workflow B: Exploratory Testing\n\nNo diff, no plan — just open the app and try to break it. Use this when the user says \"test my app\", \"find bugs\", or \"QA this site.\"\n\n### Approach\n\n1. **Discover the app** — read `package.json` to detect the framework, then open the root URL and snapshot to see what's there\n2. **Navigate everything** — click through nav links, visit every reachable page, note what exists\n3. **Test what you find** — for each page, apply the adversarial patterns below (forms, modals, navigation, keyboard, error states)\n4. **Run deterministic checks** — axe-core, console errors, broken images, form labels on every page\n5. **Report findings** — use STEP_PASS\u002FSTEP_FAIL markers, include reproduction steps for failures\n\nDon't try to be systematic about coverage. Just explore like a user would, but with the intent to break things. The agent is good at this — let it roam.\n\n### Tips for exploratory runs\n\n- Start with the homepage, then follow the navigation naturally\n- Try the 404 page (`\u002Fdoes-not-exist`) — is it custom or default?\n- Look for empty states (pages with no data)\n- Test forms with garbage input before valid input\n- Check mobile viewport (375px) on every page — does it overflow?\n- If the app has auth, use cookie-sync first\n\n## Workflow C: Parallel Testing\n\nRun independent test groups concurrently using named `browse` sessions (`BROWSE_SESSION=\u003Cname>`). Each session gets its own browser. Works with both local and remote mode.\n\nUse when testing multiple pages or categories and you want faster wall clock time.\n\nRead [references\u002Fparallel-testing.md](references\u002Fparallel-testing.md) for the full workflow: session setup, agent fan-out, cookie-sync for auth, and result merging.\n\n## Design Consistency\n\nCheck whether changed UI matches the rest of the app visually. Read [references\u002Fdesign-consistency.md](references\u002Fdesign-consistency.md) when doing visual or design checks.\n\n## Test Categories\n\n| Category | How | Assertion type |\n|----------|-----|---------------|\n| Accessibility | axe-core + keyboard nav | Deterministic (violation count) |\n| Visual Quality | Screenshot + heuristic evaluation | Visual judgment (weakest — note specifics) |\n| Responsive | Viewport sweep + screenshots | Visual + deterministic (overflow check) |\n| Console Health | Console capture eval | Deterministic (error count) |\n| UX Heuristics | Snapshot + Laws of UX + Nielsen's | Structured judgment (cite specific heuristic) |\n| Error States | Navigate to empty\u002Ferror states | Before\u002Fafter comparison |\n| Data Display | Snapshot on tables\u002Fdashboards | Element match (column count, formatting) |\n| Design Consistency | Screenshot baseline + changed page comparison | Visual judgment (cite specific property) |\n| Exploratory | Free navigation + adversarial testing | Before\u002Fafter + judgment |\n\nReference guides (load on demand):\n- **Adversarial patterns** — [references\u002Fadversarial-patterns.md](references\u002Fadversarial-patterns.md) — load when testing forms, modals, navigation, or keyboard a11y\n- **Browser recipes** — [references\u002Fbrowser-recipes.md](references\u002Fbrowser-recipes.md) — load when running deterministic checks (axe-core, console, images, form labels)\n- **Exploratory testing** — [references\u002Fexploratory-testing.md](references\u002Fexploratory-testing.md) — load for Workflow B (no diff, open exploration)\n- **UX heuristics** — [references\u002Fux-heuristics.md](references\u002Fux-heuristics.md) — load when evaluating UX quality or citing specific heuristics\n- **Design system** — [references\u002Fdesign-system.example.md](references\u002Fdesign-system.example.md) — template for users to customize\n- **Design consistency** — [references\u002Fdesign-consistency.md](references\u002Fdesign-consistency.md) — load when doing visual consistency checks\n- **Parallel testing** — [references\u002Fparallel-testing.md](references\u002Fparallel-testing.md) — load for Workflow C (concurrent sessions)\n- **Report template** — [references\u002Freport-template.html](references\u002Freport-template.html) — HTML template for Phase 7 report generation\n\nFor worked examples with exact commands, read [EXAMPLES.md](EXAMPLES.md) if you need to see the assertion protocol in action.\n\n## Best Practices\n\n1. **Be adversarial** — try to break things, don't just confirm they work\n2. **Every assertion needs evidence** — snapshot ref, eval result, or before\u002Fafter diff\n3. **Before\u002Fafter for every interaction** — snapshot, act, snapshot, compare\n4. **Screenshot every failure** — `browse screenshot` immediately on STEP_FAIL, save to `.context\u002Fui-test-screenshots\u002F\u003Cstep-id>.png`\n5. **Deterministic checks first** — axe-core, console errors, form labels before visual judgment\n6. **For localhost, start with clean local mode** — pass `--local` on the first `browse open` for reproducible runs; use `--auto-connect` only when existing local state is required\n7. **Always `browse stop` when done** — for parallel runs, stop every named session\n8. **Report failures with reproduction steps** — action, expected, actual, screenshot path, suggestion\n9. **Parallelize independent tests** — use Workflow C with named sessions when testing multiple pages or categories on a deployed site\n\n## Troubleshooting\n\n- **\"No active page\"**: `browse stop`, retry. For zombies: `pkill -f \"browse.*daemon\"`\n- **Dev server not responding**: `curl http:\u002F\u002Flocalhost:\u003Cport>` — ask user to start it\n- **`browse eval` with `await` fails**: Use `.then()` instead — `browse eval` doesn't support top-level await\n- **Element ref not found**: `browse snapshot` again — refs change on page update\n- **Blank snapshot**: `browse wait load` or `browse wait selector \".expected\"` before snapshotting\n- **SPA deep links 404**: Navigate to `\u002F` first, then click through\n- **Remote auth fails**: Re-run cookie-sync with `--context \u003Cid>`, try `--verified`\n- **Parallel session conflicts**: Ensure every `browse` command uses `BROWSE_SESSION=\u003Cname>` — without it, commands go to the default session\n- **Session not stopping**: `BROWSE_SESSION=\u003Cname> browse stop`. For zombies: `pkill -f \"browse.*\u003Cname>.*daemon\"`\n",{"data":38,"body":43},{"name":4,"description":6,"license":29,"metadata":39,"allowed-tools":41,"compatibility":42},{"author":8,"version":40},"0.4.0","Bash Read Glob Grep Agent","Requires the browse CLI (`npm install -g browse`). For remote testing: BROWSERBASE_API_KEY and cookie-sync skill.",{"type":44,"children":45},"root",[46,55,69,74,109,116,128,135,145,155,165,175,185,195,200,206,249,255,265,277,286,291,304,317,327,333,341,350,358,367,372,378,388,431,437,442,448,453,462,467,476,544,550,560,565,727,732,757,765,844,850,918,924,929,1098,1104,1150,1156,1175,1196,1331,1351,1357,1461,1499,1505,1534,1545,1550,1575,1581,1894,1926,1932,1938,2017,2022,2290,2296,2307,2483,2489,2494,2502,2648,2653,2661,2922,2927,2952,2958,2969,2978,2984,3054,3065,3267,3273,3282,3295,3301,3306,3316,3323,3342,3611,3634,5156,5169,5239,5252,5267,5374,5390,5397,5437,5443,5455,5461,5466,5581,5599,5605,5610,5616,5677,5682,5688,5729,5735,5755,5760,5772,5778,5790,5796,5981,5986,6113,6125,6131,6264,6270,6478],{"type":47,"tag":48,"props":49,"children":51},"element","h1",{"id":50},"ui-test-agentic-ui-testing-skill",[52],{"type":53,"value":54},"text","UI Test — Agentic UI Testing Skill",{"type":47,"tag":56,"props":57,"children":58},"p",{},[59,61,67],{"type":53,"value":60},"Test UI changes in a real browser. Your job is to ",{"type":47,"tag":62,"props":63,"children":64},"strong",{},[65],{"type":53,"value":66},"try to break things",{"type":53,"value":68},", not confirm they work.",{"type":47,"tag":56,"props":70,"children":71},{},[72],{"type":53,"value":73},"Three workflows:",{"type":47,"tag":75,"props":76,"children":77},"ul",{},[78,89,99],{"type":47,"tag":79,"props":80,"children":81},"li",{},[82,87],{"type":47,"tag":62,"props":83,"children":84},{},[85],{"type":53,"value":86},"Diff-driven",{"type":53,"value":88}," — analyze a git diff, test only what changed",{"type":47,"tag":79,"props":90,"children":91},{},[92,97],{"type":47,"tag":62,"props":93,"children":94},{},[95],{"type":53,"value":96},"Exploratory",{"type":53,"value":98}," — navigate the app, find bugs the developer didn't think about",{"type":47,"tag":79,"props":100,"children":101},{},[102,107],{"type":47,"tag":62,"props":103,"children":104},{},[105],{"type":53,"value":106},"Parallel",{"type":53,"value":108}," — fan out independent test groups across multiple Browserbase browsers",{"type":47,"tag":110,"props":111,"children":113},"h2",{"id":112},"how-testing-works",[114],{"type":53,"value":115},"How Testing Works",{"type":47,"tag":56,"props":117,"children":118},{},[119,121,126],{"type":53,"value":120},"The main agent ",{"type":47,"tag":62,"props":122,"children":123},{},[124],{"type":53,"value":125},"coordinates",{"type":53,"value":127}," — it plans test strategy, delegates to sub-agents, and merges results. Sub-agents do the actual browser testing.",{"type":47,"tag":129,"props":130,"children":132},"h3",{"id":131},"planning-multiple-angles-then-execute-once",[133],{"type":53,"value":134},"Planning: multiple angles, then execute once",{"type":47,"tag":56,"props":136,"children":137},{},[138,143],{"type":47,"tag":62,"props":139,"children":140},{},[141],{"type":53,"value":142},"You MUST complete all three planning rounds yourself and output them before launching any sub-agents.",{"type":53,"value":144}," Planning happens in your own response — it is NOT delegated to sub-agents. Do not skip ahead to execution.",{"type":47,"tag":56,"props":146,"children":147},{},[148,153],{"type":47,"tag":62,"props":149,"children":150},{},[151],{"type":53,"value":152},"Round 1 — Functional:",{"type":53,"value":154}," What are the core user flows? What should work? Write out each test as: action → expected result.",{"type":47,"tag":56,"props":156,"children":157},{},[158,163],{"type":47,"tag":62,"props":159,"children":160},{},[161],{"type":53,"value":162},"Round 2 — Adversarial:",{"type":53,"value":164}," Re-read Round 1. What did you miss? Think about: different user types\u002Froles, error paths, empty states, race conditions, edge inputs (empty, huge, special chars, rapid clicks).",{"type":47,"tag":56,"props":166,"children":167},{},[168,173],{"type":47,"tag":62,"props":169,"children":170},{},[171],{"type":53,"value":172},"Round 3 — Coverage gaps:",{"type":53,"value":174}," Re-read Rounds 1–2. What about: accessibility (axe-core, keyboard-only), mobile viewports, console errors, visual consistency with the rest of the app?",{"type":47,"tag":56,"props":176,"children":177},{},[178,183],{"type":47,"tag":62,"props":179,"children":180},{},[181],{"type":53,"value":182},"Deduplicate:",{"type":53,"value":184}," Merge all three rounds into one numbered list of tests. Remove overlaps. Assign each test to a group (e.g. Group A, Group B).",{"type":47,"tag":56,"props":186,"children":187},{},[188,193],{"type":47,"tag":62,"props":189,"children":190},{},[191],{"type":53,"value":192},"Then execute once",{"type":53,"value":194}," — launch one sub-agent per group. Each sub-agent receives its specific list of tests to run, nothing more. Sub-agents do not explore or plan — they execute assigned tests and report results.",{"type":47,"tag":56,"props":196,"children":197},{},[198],{"type":53,"value":199},"Output the three rounds, the merged plan, and the group assignments in your response before calling any Agent tool.",{"type":47,"tag":129,"props":201,"children":203},{"id":202},"principles-for-splitting-work",[204],{"type":53,"value":205},"Principles for splitting work",{"type":47,"tag":75,"props":207,"children":208},{},[209,219,229,239],{"type":47,"tag":79,"props":210,"children":211},{},[212,217],{"type":47,"tag":62,"props":213,"children":214},{},[215],{"type":53,"value":216},"Sub-agents run assigned tests, not open exploration.",{"type":53,"value":218}," The main agent hands each sub-agent a specific numbered list of tests. Sub-agents do not plan, explore, or decide what to test — they execute the list and stop.",{"type":47,"tag":79,"props":220,"children":221},{},[222,227],{"type":47,"tag":62,"props":223,"children":224},{},[225],{"type":53,"value":226},"The bottleneck is the slowest agent",{"type":53,"value":228}," — split work so no single agent has a disproportionate share. Many small agents > few large ones.",{"type":47,"tag":79,"props":230,"children":231},{},[232,237],{"type":47,"tag":62,"props":233,"children":234},{},[235],{"type":53,"value":236},"Size the effort to the change",{"type":53,"value":238}," — a single component fix doesn't need many agents or many steps. A full-page redesign does. Let the scope of the diff drive the plan.",{"type":47,"tag":79,"props":240,"children":241},{},[242,247],{"type":47,"tag":62,"props":243,"children":244},{},[245],{"type":53,"value":246},"No early stopping on failures",{"type":53,"value":248}," — find as many bugs as possible within the assigned tests.",{"type":47,"tag":129,"props":250,"children":252},{"id":251},"giving-sub-agents-a-step-budget",[253],{"type":53,"value":254},"Giving sub-agents a step budget",{"type":47,"tag":56,"props":256,"children":257},{},[258,263],{"type":47,"tag":62,"props":259,"children":260},{},[261],{"type":53,"value":262},"The main agent MUST include an explicit browse step limit in every sub-agent prompt.",{"type":53,"value":264}," Sub-agents do not self-limit — they will run until done unless told otherwise.",{"type":47,"tag":56,"props":266,"children":267},{},[268,270,275],{"type":53,"value":269},"As a rough heuristic: ~25 steps for a few targeted checks, ~40 for a full page with functional + adversarial + a11y, ~75 for multiple pages or a broad category. ",{"type":47,"tag":62,"props":271,"children":272},{},[273],{"type":53,"value":274},"Adjust based on what the assigned tests actually require",{"type":53,"value":276}," — these are starting points, not rules.",{"type":47,"tag":56,"props":278,"children":279},{},[280,281,285],{"type":53,"value":269},{"type":47,"tag":62,"props":282,"children":283},{},[284],{"type":53,"value":274},{"type":53,"value":276},{"type":47,"tag":56,"props":287,"children":288},{},[289],{"type":53,"value":290},"Every sub-agent prompt must include:",{"type":47,"tag":292,"props":293,"children":297},"pre",{"className":294,"code":296,"language":53},[295],"language-text","You have a budget of N browse steps (each `browse` command = 1 step). Count your steps as you go. When you reach N, stop immediately and report:\n- STEP_PASS\u002FSTEP_FAIL for every test you completed\n- STEP_SKIP|\u003Ctest-id>|budget reached for every test you didn't get to\n\nDo not retry or continue after hitting the budget.\nRun only these tests: [numbered list from the merged plan]\nDo not explore beyond the assigned tests.\nDo NOT generate an HTML report or write any files. Return only step markers and your findings as text.\n",[298],{"type":47,"tag":299,"props":300,"children":302},"code",{"__ignoreMap":301},"",[303],{"type":53,"value":296},{"type":47,"tag":56,"props":305,"children":306},{},[307,309,315],{"type":53,"value":308},"The main agent should NOT run ",{"type":47,"tag":299,"props":310,"children":312},{"className":311},[],[313],{"type":53,"value":314},"browse",{"type":53,"value":316}," commands itself (except to verify the dev server is up). All testing happens in sub-agents.",{"type":47,"tag":56,"props":318,"children":319},{},[320,325],{"type":47,"tag":62,"props":321,"children":322},{},[323],{"type":53,"value":324},"When a sub-agent hits its budget, the main agent accepts the partial results as-is.",{"type":53,"value":326}," Do not re-run or retry the sub-agent. Include SKIPPED tests in the final report so the developer knows what wasn't covered.",{"type":47,"tag":129,"props":328,"children":330},{"id":329},"reporting",[331],{"type":53,"value":332},"Reporting",{"type":47,"tag":56,"props":334,"children":335},{},[336],{"type":47,"tag":62,"props":337,"children":338},{},[339],{"type":53,"value":340},"Every sub-agent reports back with:",{"type":47,"tag":292,"props":342,"children":345},{"className":343,"code":344,"language":53},[295],"Tests: 8 | Passed: 5 | Failed: 2 | Skipped: 1 | Pages visited: 2\n",[346],{"type":47,"tag":299,"props":347,"children":348},{"__ignoreMap":301},[349],{"type":53,"value":344},{"type":47,"tag":56,"props":351,"children":352},{},[353],{"type":47,"tag":62,"props":354,"children":355},{},[356],{"type":53,"value":357},"The main agent merges into a final report with:",{"type":47,"tag":292,"props":359,"children":362},{"className":360,"code":361,"language":53},[295],"Tests: 20 | Passed: 14 | Failed: 4 | Skipped: 2 | Agents: 3 | Pass rate: 70%\n",[363],{"type":47,"tag":299,"props":364,"children":365},{"__ignoreMap":301},[366],{"type":53,"value":361},{"type":47,"tag":56,"props":368,"children":369},{},[370],{"type":53,"value":371},"Do not report \"steps used\" — browse command counts are implementation plumbing, not a meaningful metric for reviewers.",{"type":47,"tag":110,"props":373,"children":375},{"id":374},"testing-philosophy",[376],{"type":53,"value":377},"Testing Philosophy",{"type":47,"tag":56,"props":379,"children":380},{},[381,386],{"type":47,"tag":62,"props":382,"children":383},{},[384],{"type":53,"value":385},"You are an adversarial tester.",{"type":53,"value":387}," Your goal is to find bugs, not prove correctness.",{"type":47,"tag":75,"props":389,"children":390},{},[391,401,411,421],{"type":47,"tag":79,"props":392,"children":393},{},[394,399],{"type":47,"tag":62,"props":395,"children":396},{},[397],{"type":53,"value":398},"Try to break every feature you test.",{"type":53,"value":400}," Don't just check \"does the button exist?\" — click it twice rapidly, submit empty forms, paste 500 characters, press Escape mid-flow.",{"type":47,"tag":79,"props":402,"children":403},{},[404,409],{"type":47,"tag":62,"props":405,"children":406},{},[407],{"type":53,"value":408},"Test what the developer didn't think about.",{"type":53,"value":410}," Empty states, error recovery, keyboard-only navigation, mobile overflow.",{"type":47,"tag":79,"props":412,"children":413},{},[414,419],{"type":47,"tag":62,"props":415,"children":416},{},[417],{"type":53,"value":418},"Every assertion must be evidence-based.",{"type":53,"value":420}," Compare before\u002Fafter snapshots. Check specific elements by ref. Never report PASS without concrete evidence from the accessibility tree or a deterministic check.",{"type":47,"tag":79,"props":422,"children":423},{},[424,429],{"type":47,"tag":62,"props":425,"children":426},{},[427],{"type":53,"value":428},"Report failures with enough detail to reproduce.",{"type":53,"value":430}," Include the exact action, what you expected, what you got, and a suggested fix.",{"type":47,"tag":110,"props":432,"children":434},{"id":433},"assertion-protocol",[435],{"type":53,"value":436},"Assertion Protocol",{"type":47,"tag":56,"props":438,"children":439},{},[440],{"type":53,"value":441},"Every test step MUST produce a structured assertion. Do not write freeform \"this looks good.\"",{"type":47,"tag":129,"props":443,"children":445},{"id":444},"step-markers",[446],{"type":53,"value":447},"Step markers",{"type":47,"tag":56,"props":449,"children":450},{},[451],{"type":53,"value":452},"For each test step, emit exactly one marker:",{"type":47,"tag":292,"props":454,"children":457},{"className":455,"code":456,"language":53},[295],"STEP_PASS|\u003Cstep-id>|\u003Cevidence>\n",[458],{"type":47,"tag":299,"props":459,"children":460},{"__ignoreMap":301},[461],{"type":53,"value":456},{"type":47,"tag":56,"props":463,"children":464},{},[465],{"type":53,"value":466},"or",{"type":47,"tag":292,"props":468,"children":471},{"className":469,"code":470,"language":53},[295],"STEP_FAIL|\u003Cstep-id>|\u003Cexpected> → \u003Cactual>|\u003Cscreenshot-path>\n",[472],{"type":47,"tag":299,"props":473,"children":474},{"__ignoreMap":301},[475],{"type":53,"value":470},{"type":47,"tag":75,"props":477,"children":478},{},[479,511,522,533],{"type":47,"tag":79,"props":480,"children":481},{},[482,488,490,496,498,504,505],{"type":47,"tag":299,"props":483,"children":485},{"className":484},[],[486],{"type":53,"value":487},"step-id",{"type":53,"value":489},": short identifier like ",{"type":47,"tag":299,"props":491,"children":493},{"className":492},[],[494],{"type":53,"value":495},"homepage-cta",{"type":53,"value":497},", ",{"type":47,"tag":299,"props":499,"children":501},{"className":500},[],[502],{"type":53,"value":503},"form-validation-error",{"type":53,"value":497},{"type":47,"tag":299,"props":506,"children":508},{"className":507},[],[509],{"type":53,"value":510},"modal-cancel",{"type":47,"tag":79,"props":512,"children":513},{},[514,520],{"type":47,"tag":299,"props":515,"children":517},{"className":516},[],[518],{"type":53,"value":519},"evidence",{"type":53,"value":521},": what you observed that proves the step passed (element ref, text content, URL, eval result)",{"type":47,"tag":79,"props":523,"children":524},{},[525,531],{"type":47,"tag":299,"props":526,"children":528},{"className":527},[],[529],{"type":53,"value":530},"expected → actual",{"type":53,"value":532},": what you expected vs what you got",{"type":47,"tag":79,"props":534,"children":535},{},[536,542],{"type":47,"tag":299,"props":537,"children":539},{"className":538},[],[540],{"type":53,"value":541},"screenshot-path",{"type":53,"value":543},": path to the saved screenshot (failures only — see Screenshot Capture below)",{"type":47,"tag":129,"props":545,"children":547},{"id":546},"screenshot-capture-for-failures",[548],{"type":53,"value":549},"Screenshot Capture for Failures",{"type":47,"tag":56,"props":551,"children":552},{},[553,558],{"type":47,"tag":62,"props":554,"children":555},{},[556],{"type":53,"value":557},"Every STEP_FAIL MUST have an accompanying screenshot",{"type":53,"value":559}," so the developer can see what went wrong visually.",{"type":47,"tag":56,"props":561,"children":562},{},[563],{"type":53,"value":564},"When a test step fails:",{"type":47,"tag":292,"props":566,"children":570},{"className":567,"code":568,"language":569,"meta":301,"style":301},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# 1. Take a screenshot immediately after observing the failure\nbrowse screenshot --path .context\u002Fui-test-screenshots\u002F\u003Cstep-id>.png\n\n# If --path is not supported, take the screenshot and save manually:\nbrowse screenshot\n# The browse CLI will output the screenshot path — move\u002Fcopy it:\ncp \u002Ftmp\u002Fbrowse-screenshot-*.png .context\u002Fui-test-screenshots\u002F\u003Cstep-id>.png\n","bash",[571],{"type":47,"tag":299,"props":572,"children":573},{"__ignoreMap":301},[574,586,638,648,657,670,679],{"type":47,"tag":575,"props":576,"children":579},"span",{"class":577,"line":578},"line",1,[580],{"type":47,"tag":575,"props":581,"children":583},{"style":582},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[584],{"type":53,"value":585},"# 1. Take a screenshot immediately after observing the failure\n",{"type":47,"tag":575,"props":587,"children":589},{"class":577,"line":588},2,[590,595,601,606,611,617,622,628,633],{"type":47,"tag":575,"props":591,"children":593},{"style":592},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[594],{"type":53,"value":314},{"type":47,"tag":575,"props":596,"children":598},{"style":597},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[599],{"type":53,"value":600}," screenshot",{"type":47,"tag":575,"props":602,"children":603},{"style":597},[604],{"type":53,"value":605}," --path",{"type":47,"tag":575,"props":607,"children":608},{"style":597},[609],{"type":53,"value":610}," .context\u002Fui-test-screenshots\u002F",{"type":47,"tag":575,"props":612,"children":614},{"style":613},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[615],{"type":53,"value":616},"\u003C",{"type":47,"tag":575,"props":618,"children":619},{"style":597},[620],{"type":53,"value":621},"step-i",{"type":47,"tag":575,"props":623,"children":625},{"style":624},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[626],{"type":53,"value":627},"d",{"type":47,"tag":575,"props":629,"children":630},{"style":613},[631],{"type":53,"value":632},">",{"type":47,"tag":575,"props":634,"children":635},{"style":597},[636],{"type":53,"value":637},".png\n",{"type":47,"tag":575,"props":639,"children":641},{"class":577,"line":640},3,[642],{"type":47,"tag":575,"props":643,"children":645},{"emptyLinePlaceholder":644},true,[646],{"type":53,"value":647},"\n",{"type":47,"tag":575,"props":649,"children":651},{"class":577,"line":650},4,[652],{"type":47,"tag":575,"props":653,"children":654},{"style":582},[655],{"type":53,"value":656},"# If --path is not supported, take the screenshot and save manually:\n",{"type":47,"tag":575,"props":658,"children":660},{"class":577,"line":659},5,[661,665],{"type":47,"tag":575,"props":662,"children":663},{"style":592},[664],{"type":53,"value":314},{"type":47,"tag":575,"props":666,"children":667},{"style":597},[668],{"type":53,"value":669}," screenshot\n",{"type":47,"tag":575,"props":671,"children":673},{"class":577,"line":672},6,[674],{"type":47,"tag":575,"props":675,"children":676},{"style":582},[677],{"type":53,"value":678},"# The browse CLI will output the screenshot path — move\u002Fcopy it:\n",{"type":47,"tag":575,"props":680,"children":682},{"class":577,"line":681},7,[683,688,693,698,703,707,711,715,719,723],{"type":47,"tag":575,"props":684,"children":685},{"style":592},[686],{"type":53,"value":687},"cp",{"type":47,"tag":575,"props":689,"children":690},{"style":597},[691],{"type":53,"value":692}," \u002Ftmp\u002Fbrowse-screenshot-",{"type":47,"tag":575,"props":694,"children":695},{"style":624},[696],{"type":53,"value":697},"*",{"type":47,"tag":575,"props":699,"children":700},{"style":597},[701],{"type":53,"value":702},".png",{"type":47,"tag":575,"props":704,"children":705},{"style":597},[706],{"type":53,"value":610},{"type":47,"tag":575,"props":708,"children":709},{"style":613},[710],{"type":53,"value":616},{"type":47,"tag":575,"props":712,"children":713},{"style":597},[714],{"type":53,"value":621},{"type":47,"tag":575,"props":716,"children":717},{"style":624},[718],{"type":53,"value":627},{"type":47,"tag":575,"props":720,"children":721},{"style":613},[722],{"type":53,"value":632},{"type":47,"tag":575,"props":724,"children":725},{"style":597},[726],{"type":53,"value":637},{"type":47,"tag":56,"props":728,"children":729},{},[730],{"type":53,"value":731},"Setup the screenshot directory at the start of any test run:",{"type":47,"tag":292,"props":733,"children":735},{"className":567,"code":734,"language":569,"meta":301,"style":301},"mkdir -p .context\u002Fui-test-screenshots\n",[736],{"type":47,"tag":299,"props":737,"children":738},{"__ignoreMap":301},[739],{"type":47,"tag":575,"props":740,"children":741},{"class":577,"line":578},[742,747,752],{"type":47,"tag":575,"props":743,"children":744},{"style":592},[745],{"type":53,"value":746},"mkdir",{"type":47,"tag":575,"props":748,"children":749},{"style":597},[750],{"type":53,"value":751}," -p",{"type":47,"tag":575,"props":753,"children":754},{"style":597},[755],{"type":53,"value":756}," .context\u002Fui-test-screenshots\n",{"type":47,"tag":56,"props":758,"children":759},{},[760],{"type":47,"tag":62,"props":761,"children":762},{},[763],{"type":53,"value":764},"Rules:",{"type":47,"tag":75,"props":766,"children":767},{},[768,795,808,828,833],{"type":47,"tag":79,"props":769,"children":770},{},[771,773,779,780,786,787,793],{"type":53,"value":772},"File name = step-id (e.g., ",{"type":47,"tag":299,"props":774,"children":776},{"className":775},[],[777],{"type":53,"value":778},"double-submit.png",{"type":53,"value":497},{"type":47,"tag":299,"props":781,"children":783},{"className":782},[],[784],{"type":53,"value":785},"axe-audit.png",{"type":53,"value":497},{"type":47,"tag":299,"props":788,"children":790},{"className":789},[],[791],{"type":53,"value":792},"modal-focus-trap.png",{"type":53,"value":794},")",{"type":47,"tag":79,"props":796,"children":797},{},[798,800,806],{"type":53,"value":799},"Store in ",{"type":47,"tag":299,"props":801,"children":803},{"className":802},[],[804],{"type":53,"value":805},".context\u002Fui-test-screenshots\u002F",{"type":53,"value":807}," — this directory is gitignored and accessible to the developer and other agents",{"type":47,"tag":79,"props":809,"children":810},{},[811,813,819,821,827],{"type":53,"value":812},"For parallel runs, include the session name: ",{"type":47,"tag":299,"props":814,"children":816},{"className":815},[],[817],{"type":53,"value":818},"\u003Csession>-\u003Cstep-id>.png",{"type":53,"value":820}," (e.g., ",{"type":47,"tag":299,"props":822,"children":824},{"className":823},[],[825],{"type":53,"value":826},"signup-double-submit.png",{"type":53,"value":794},{"type":47,"tag":79,"props":829,"children":830},{},[831],{"type":53,"value":832},"Take the screenshot at the moment of failure — capture the broken state, not after recovery",{"type":47,"tag":79,"props":834,"children":835},{},[836,838],{"type":53,"value":837},"For visual\u002Flayout bugs, also screenshot the baseline (working state) for comparison: ",{"type":47,"tag":299,"props":839,"children":841},{"className":840},[],[842],{"type":53,"value":843},"\u003Cstep-id>-baseline.png",{"type":47,"tag":129,"props":845,"children":847},{"id":846},"how-to-verify-in-order-of-rigor",[848],{"type":53,"value":849},"How to verify (in order of rigor)",{"type":47,"tag":851,"props":852,"children":853},"ol",{},[854,880,898,908],{"type":47,"tag":79,"props":855,"children":856},{},[857,862,864,870,872,878],{"type":47,"tag":62,"props":858,"children":859},{},[860],{"type":53,"value":861},"Deterministic check",{"type":53,"value":863}," (strongest) — ",{"type":47,"tag":299,"props":865,"children":867},{"className":866},[],[868],{"type":53,"value":869},"browse eval",{"type":53,"value":871}," returns structured data you can inspect. Examples: axe-core violation count, ",{"type":47,"tag":299,"props":873,"children":875},{"className":874},[],[876],{"type":53,"value":877},"document.title",{"type":53,"value":879},", form field value, console error array, element count.",{"type":47,"tag":79,"props":881,"children":882},{},[883,888,890,896],{"type":47,"tag":62,"props":884,"children":885},{},[886],{"type":53,"value":887},"Snapshot element match",{"type":53,"value":889}," — a specific element with a specific role and text exists in the accessibility tree. Check by ref: ",{"type":47,"tag":299,"props":891,"children":893},{"className":892},[],[894],{"type":53,"value":895},"@0-12 button \"Save\"",{"type":53,"value":897},". An element either exists in the tree or it doesn't.",{"type":47,"tag":79,"props":899,"children":900},{},[901,906],{"type":47,"tag":62,"props":902,"children":903},{},[904],{"type":53,"value":905},"Before\u002Fafter comparison",{"type":53,"value":907}," — snapshot before action, act, snapshot after. Verify the tree changed in the expected way (element appeared, disappeared, text changed).",{"type":47,"tag":79,"props":909,"children":910},{},[911,916],{"type":47,"tag":62,"props":912,"children":913},{},[914],{"type":53,"value":915},"Screenshot + visual judgment",{"type":53,"value":917}," (weakest) — only for visual-only properties (color, spacing, layout) that the accessibility tree cannot capture. Always accompany with what specifically you're evaluating.",{"type":47,"tag":129,"props":919,"children":921},{"id":920},"beforeafter-comparison-pattern",[922],{"type":53,"value":923},"Before\u002Fafter comparison pattern",{"type":47,"tag":56,"props":925,"children":926},{},[927],{"type":53,"value":928},"This is the core verification loop. Use it for every interaction:",{"type":47,"tag":292,"props":930,"children":932},{"className":567,"code":931,"language":569,"meta":301,"style":301},"# 1. BEFORE: capture state\nbrowse snapshot\n# Record: what elements exist, their text, their refs\n\n# 2. ACT: perform the interaction\nbrowse click @0-12\n\n# 3. AFTER: capture new state\nbrowse snapshot\n# Compare: what changed? What appeared? What disappeared?\n\n# 4. ASSERT: emit marker based on comparison\n# If dialog appeared: STEP_PASS|modal-open|dialog \"Confirm\" appeared at @0-20\n# If nothing changed:\nbrowse screenshot --path .context\u002Fui-test-screenshots\u002Fmodal-open.png\n# STEP_FAIL|modal-open|expected dialog to appear → snapshot unchanged|.context\u002Fui-test-screenshots\u002Fmodal-open.png\n",[933],{"type":47,"tag":299,"props":934,"children":935},{"__ignoreMap":301},[936,944,956,964,971,979,996,1003,1012,1024,1033,1041,1050,1059,1068,1089],{"type":47,"tag":575,"props":937,"children":938},{"class":577,"line":578},[939],{"type":47,"tag":575,"props":940,"children":941},{"style":582},[942],{"type":53,"value":943},"# 1. BEFORE: capture state\n",{"type":47,"tag":575,"props":945,"children":946},{"class":577,"line":588},[947,951],{"type":47,"tag":575,"props":948,"children":949},{"style":592},[950],{"type":53,"value":314},{"type":47,"tag":575,"props":952,"children":953},{"style":597},[954],{"type":53,"value":955}," snapshot\n",{"type":47,"tag":575,"props":957,"children":958},{"class":577,"line":640},[959],{"type":47,"tag":575,"props":960,"children":961},{"style":582},[962],{"type":53,"value":963},"# Record: what elements exist, their text, their refs\n",{"type":47,"tag":575,"props":965,"children":966},{"class":577,"line":650},[967],{"type":47,"tag":575,"props":968,"children":969},{"emptyLinePlaceholder":644},[970],{"type":53,"value":647},{"type":47,"tag":575,"props":972,"children":973},{"class":577,"line":659},[974],{"type":47,"tag":575,"props":975,"children":976},{"style":582},[977],{"type":53,"value":978},"# 2. ACT: perform the interaction\n",{"type":47,"tag":575,"props":980,"children":981},{"class":577,"line":672},[982,986,991],{"type":47,"tag":575,"props":983,"children":984},{"style":592},[985],{"type":53,"value":314},{"type":47,"tag":575,"props":987,"children":988},{"style":597},[989],{"type":53,"value":990}," click",{"type":47,"tag":575,"props":992,"children":993},{"style":597},[994],{"type":53,"value":995}," @0-12\n",{"type":47,"tag":575,"props":997,"children":998},{"class":577,"line":681},[999],{"type":47,"tag":575,"props":1000,"children":1001},{"emptyLinePlaceholder":644},[1002],{"type":53,"value":647},{"type":47,"tag":575,"props":1004,"children":1006},{"class":577,"line":1005},8,[1007],{"type":47,"tag":575,"props":1008,"children":1009},{"style":582},[1010],{"type":53,"value":1011},"# 3. AFTER: capture new state\n",{"type":47,"tag":575,"props":1013,"children":1015},{"class":577,"line":1014},9,[1016,1020],{"type":47,"tag":575,"props":1017,"children":1018},{"style":592},[1019],{"type":53,"value":314},{"type":47,"tag":575,"props":1021,"children":1022},{"style":597},[1023],{"type":53,"value":955},{"type":47,"tag":575,"props":1025,"children":1027},{"class":577,"line":1026},10,[1028],{"type":47,"tag":575,"props":1029,"children":1030},{"style":582},[1031],{"type":53,"value":1032},"# Compare: what changed? What appeared? What disappeared?\n",{"type":47,"tag":575,"props":1034,"children":1036},{"class":577,"line":1035},11,[1037],{"type":47,"tag":575,"props":1038,"children":1039},{"emptyLinePlaceholder":644},[1040],{"type":53,"value":647},{"type":47,"tag":575,"props":1042,"children":1044},{"class":577,"line":1043},12,[1045],{"type":47,"tag":575,"props":1046,"children":1047},{"style":582},[1048],{"type":53,"value":1049},"# 4. ASSERT: emit marker based on comparison\n",{"type":47,"tag":575,"props":1051,"children":1053},{"class":577,"line":1052},13,[1054],{"type":47,"tag":575,"props":1055,"children":1056},{"style":582},[1057],{"type":53,"value":1058},"# If dialog appeared: STEP_PASS|modal-open|dialog \"Confirm\" appeared at @0-20\n",{"type":47,"tag":575,"props":1060,"children":1062},{"class":577,"line":1061},14,[1063],{"type":47,"tag":575,"props":1064,"children":1065},{"style":582},[1066],{"type":53,"value":1067},"# If nothing changed:\n",{"type":47,"tag":575,"props":1069,"children":1071},{"class":577,"line":1070},15,[1072,1076,1080,1084],{"type":47,"tag":575,"props":1073,"children":1074},{"style":592},[1075],{"type":53,"value":314},{"type":47,"tag":575,"props":1077,"children":1078},{"style":597},[1079],{"type":53,"value":600},{"type":47,"tag":575,"props":1081,"children":1082},{"style":597},[1083],{"type":53,"value":605},{"type":47,"tag":575,"props":1085,"children":1086},{"style":597},[1087],{"type":53,"value":1088}," .context\u002Fui-test-screenshots\u002Fmodal-open.png\n",{"type":47,"tag":575,"props":1090,"children":1092},{"class":577,"line":1091},16,[1093],{"type":47,"tag":575,"props":1094,"children":1095},{"style":582},[1096],{"type":53,"value":1097},"# STEP_FAIL|modal-open|expected dialog to appear → snapshot unchanged|.context\u002Fui-test-screenshots\u002Fmodal-open.png\n",{"type":47,"tag":110,"props":1099,"children":1101},{"id":1100},"setup",[1102],{"type":53,"value":1103},"Setup",{"type":47,"tag":292,"props":1105,"children":1107},{"className":567,"code":1106,"language":569,"meta":301,"style":301},"which browse || npm install -g browse\n",[1108],{"type":47,"tag":299,"props":1109,"children":1110},{"__ignoreMap":301},[1111],{"type":47,"tag":575,"props":1112,"children":1113},{"class":577,"line":578},[1114,1120,1125,1130,1135,1140,1145],{"type":47,"tag":575,"props":1115,"children":1117},{"style":1116},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[1118],{"type":53,"value":1119},"which",{"type":47,"tag":575,"props":1121,"children":1122},{"style":597},[1123],{"type":53,"value":1124}," browse",{"type":47,"tag":575,"props":1126,"children":1127},{"style":613},[1128],{"type":53,"value":1129}," ||",{"type":47,"tag":575,"props":1131,"children":1132},{"style":592},[1133],{"type":53,"value":1134}," npm",{"type":47,"tag":575,"props":1136,"children":1137},{"style":597},[1138],{"type":53,"value":1139}," install",{"type":47,"tag":575,"props":1141,"children":1142},{"style":597},[1143],{"type":53,"value":1144}," -g",{"type":47,"tag":575,"props":1146,"children":1147},{"style":597},[1148],{"type":53,"value":1149}," browse\n",{"type":47,"tag":129,"props":1151,"children":1153},{"id":1152},"avoid-permission-fatigue",[1154],{"type":53,"value":1155},"Avoid permission fatigue",{"type":47,"tag":56,"props":1157,"children":1158},{},[1159,1161,1166,1168,1173],{"type":53,"value":1160},"This skill runs many ",{"type":47,"tag":299,"props":1162,"children":1164},{"className":1163},[],[1165],{"type":53,"value":314},{"type":53,"value":1167}," commands (snapshots, clicks, evals). To avoid approving each one, add ",{"type":47,"tag":299,"props":1169,"children":1171},{"className":1170},[],[1172],{"type":53,"value":314},{"type":53,"value":1174}," to your allowed commands:",{"type":47,"tag":56,"props":1176,"children":1177},{},[1178,1180,1186,1188,1194],{"type":53,"value":1179},"Add both patterns to ",{"type":47,"tag":299,"props":1181,"children":1183},{"className":1182},[],[1184],{"type":53,"value":1185},".claude\u002Fsettings.json",{"type":53,"value":1187}," (project-level) or ",{"type":47,"tag":299,"props":1189,"children":1191},{"className":1190},[],[1192],{"type":53,"value":1193},"~\u002F.claude\u002Fsettings.json",{"type":53,"value":1195}," (user-level):",{"type":47,"tag":292,"props":1197,"children":1201},{"className":1198,"code":1199,"language":1200,"meta":301,"style":301},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n  \"permissions\": {\n    \"allow\": [\n      \"Bash(browse:*)\",\n      \"Bash(BROWSE_SESSION=*)\"\n    ]\n  }\n}\n","json",[1202],{"type":47,"tag":299,"props":1203,"children":1204},{"__ignoreMap":301},[1205,1213,1242,1268,1290,1307,1315,1323],{"type":47,"tag":575,"props":1206,"children":1207},{"class":577,"line":578},[1208],{"type":47,"tag":575,"props":1209,"children":1210},{"style":613},[1211],{"type":53,"value":1212},"{\n",{"type":47,"tag":575,"props":1214,"children":1215},{"class":577,"line":588},[1216,1221,1227,1232,1237],{"type":47,"tag":575,"props":1217,"children":1218},{"style":613},[1219],{"type":53,"value":1220},"  \"",{"type":47,"tag":575,"props":1222,"children":1224},{"style":1223},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[1225],{"type":53,"value":1226},"permissions",{"type":47,"tag":575,"props":1228,"children":1229},{"style":613},[1230],{"type":53,"value":1231},"\"",{"type":47,"tag":575,"props":1233,"children":1234},{"style":613},[1235],{"type":53,"value":1236},":",{"type":47,"tag":575,"props":1238,"children":1239},{"style":613},[1240],{"type":53,"value":1241}," {\n",{"type":47,"tag":575,"props":1243,"children":1244},{"class":577,"line":640},[1245,1250,1255,1259,1263],{"type":47,"tag":575,"props":1246,"children":1247},{"style":613},[1248],{"type":53,"value":1249},"    \"",{"type":47,"tag":575,"props":1251,"children":1252},{"style":592},[1253],{"type":53,"value":1254},"allow",{"type":47,"tag":575,"props":1256,"children":1257},{"style":613},[1258],{"type":53,"value":1231},{"type":47,"tag":575,"props":1260,"children":1261},{"style":613},[1262],{"type":53,"value":1236},{"type":47,"tag":575,"props":1264,"children":1265},{"style":613},[1266],{"type":53,"value":1267}," [\n",{"type":47,"tag":575,"props":1269,"children":1270},{"class":577,"line":650},[1271,1276,1281,1285],{"type":47,"tag":575,"props":1272,"children":1273},{"style":613},[1274],{"type":53,"value":1275},"      \"",{"type":47,"tag":575,"props":1277,"children":1278},{"style":597},[1279],{"type":53,"value":1280},"Bash(browse:*)",{"type":47,"tag":575,"props":1282,"children":1283},{"style":613},[1284],{"type":53,"value":1231},{"type":47,"tag":575,"props":1286,"children":1287},{"style":613},[1288],{"type":53,"value":1289},",\n",{"type":47,"tag":575,"props":1291,"children":1292},{"class":577,"line":659},[1293,1297,1302],{"type":47,"tag":575,"props":1294,"children":1295},{"style":613},[1296],{"type":53,"value":1275},{"type":47,"tag":575,"props":1298,"children":1299},{"style":597},[1300],{"type":53,"value":1301},"Bash(BROWSE_SESSION=*)",{"type":47,"tag":575,"props":1303,"children":1304},{"style":613},[1305],{"type":53,"value":1306},"\"\n",{"type":47,"tag":575,"props":1308,"children":1309},{"class":577,"line":672},[1310],{"type":47,"tag":575,"props":1311,"children":1312},{"style":613},[1313],{"type":53,"value":1314},"    ]\n",{"type":47,"tag":575,"props":1316,"children":1317},{"class":577,"line":681},[1318],{"type":47,"tag":575,"props":1319,"children":1320},{"style":613},[1321],{"type":53,"value":1322},"  }\n",{"type":47,"tag":575,"props":1324,"children":1325},{"class":577,"line":1005},[1326],{"type":47,"tag":575,"props":1327,"children":1328},{"style":613},[1329],{"type":53,"value":1330},"}\n",{"type":47,"tag":56,"props":1332,"children":1333},{},[1334,1336,1341,1343,1349],{"type":53,"value":1335},"The first pattern covers plain ",{"type":47,"tag":299,"props":1337,"children":1339},{"className":1338},[],[1340],{"type":53,"value":314},{"type":53,"value":1342}," commands. The second covers parallel sessions (",{"type":47,"tag":299,"props":1344,"children":1346},{"className":1345},[],[1347],{"type":53,"value":1348},"BROWSE_SESSION=signup browse open ...",{"type":53,"value":1350},"). Both are needed to avoid approval prompts.",{"type":47,"tag":110,"props":1352,"children":1354},{"id":1353},"mode-selection",[1355],{"type":53,"value":1356},"Mode Selection",{"type":47,"tag":1358,"props":1359,"children":1360},"table",{},[1361,1390],{"type":47,"tag":1362,"props":1363,"children":1364},"thead",{},[1365],{"type":47,"tag":1366,"props":1367,"children":1368},"tr",{},[1369,1375,1380,1385],{"type":47,"tag":1370,"props":1371,"children":1372},"th",{},[1373],{"type":53,"value":1374},"Target",{"type":47,"tag":1370,"props":1376,"children":1377},{},[1378],{"type":53,"value":1379},"Mode",{"type":47,"tag":1370,"props":1381,"children":1382},{},[1383],{"type":53,"value":1384},"Command",{"type":47,"tag":1370,"props":1386,"children":1387},{},[1388],{"type":53,"value":1389},"Auth",{"type":47,"tag":1391,"props":1392,"children":1393},"tbody",{},[1394,1434],{"type":47,"tag":1366,"props":1395,"children":1396},{},[1397,1415,1420,1429],{"type":47,"tag":1398,"props":1399,"children":1400},"td",{},[1401,1407,1409],{"type":47,"tag":299,"props":1402,"children":1404},{"className":1403},[],[1405],{"type":53,"value":1406},"localhost",{"type":53,"value":1408}," \u002F ",{"type":47,"tag":299,"props":1410,"children":1412},{"className":1411},[],[1413],{"type":53,"value":1414},"127.0.0.1",{"type":47,"tag":1398,"props":1416,"children":1417},{},[1418],{"type":53,"value":1419},"Local",{"type":47,"tag":1398,"props":1421,"children":1422},{},[1423],{"type":47,"tag":299,"props":1424,"children":1426},{"className":1425},[],[1427],{"type":53,"value":1428},"browse open \u003Curl> --local",{"type":47,"tag":1398,"props":1430,"children":1431},{},[1432],{"type":53,"value":1433},"None needed (clean isolated local browser by default)",{"type":47,"tag":1366,"props":1435,"children":1436},{},[1437,1442,1447,1456],{"type":47,"tag":1398,"props":1438,"children":1439},{},[1440],{"type":53,"value":1441},"Deployed\u002Fstaging site",{"type":47,"tag":1398,"props":1443,"children":1444},{},[1445],{"type":53,"value":1446},"Remote",{"type":47,"tag":1398,"props":1448,"children":1449},{},[1450],{"type":47,"tag":299,"props":1451,"children":1453},{"className":1452},[],[1454],{"type":53,"value":1455},"browse open \u003Curl> --remote",{"type":47,"tag":1398,"props":1457,"children":1458},{},[1459],{"type":53,"value":1460},"Browserbase credentials; use contexts where supported",{"type":47,"tag":56,"props":1462,"children":1463},{},[1464],{"type":47,"tag":62,"props":1465,"children":1466},{},[1467,1469,1474,1476,1481,1483,1489,1491,1497],{"type":53,"value":1468},"Rule: If the target URL contains ",{"type":47,"tag":299,"props":1470,"children":1472},{"className":1471},[],[1473],{"type":53,"value":1406},{"type":53,"value":1475}," or ",{"type":47,"tag":299,"props":1477,"children":1479},{"className":1478},[],[1480],{"type":53,"value":1414},{"type":53,"value":1482},", pass ",{"type":47,"tag":299,"props":1484,"children":1486},{"className":1485},[],[1487],{"type":53,"value":1488},"--local",{"type":53,"value":1490}," on the first ",{"type":47,"tag":299,"props":1492,"children":1494},{"className":1493},[],[1495],{"type":53,"value":1496},"browse open",{"type":53,"value":1498},".",{"type":47,"tag":129,"props":1500,"children":1502},{"id":1501},"local-mode-default-for-localhost",[1503],{"type":53,"value":1504},"Local Mode (default for localhost)",{"type":47,"tag":292,"props":1506,"children":1508},{"className":567,"code":1507,"language":569,"meta":301,"style":301},"browse open http:\u002F\u002Flocalhost:3000 --local\n",[1509],{"type":47,"tag":299,"props":1510,"children":1511},{"__ignoreMap":301},[1512],{"type":47,"tag":575,"props":1513,"children":1514},{"class":577,"line":578},[1515,1519,1524,1529],{"type":47,"tag":575,"props":1516,"children":1517},{"style":592},[1518],{"type":53,"value":314},{"type":47,"tag":575,"props":1520,"children":1521},{"style":597},[1522],{"type":53,"value":1523}," open",{"type":47,"tag":575,"props":1525,"children":1526},{"style":597},[1527],{"type":53,"value":1528}," http:\u002F\u002Flocalhost:3000",{"type":47,"tag":575,"props":1530,"children":1531},{"style":597},[1532],{"type":53,"value":1533}," --local\n",{"type":47,"tag":56,"props":1535,"children":1536},{},[1537,1543],{"type":47,"tag":299,"props":1538,"children":1540},{"className":1539},[],[1541],{"type":53,"value":1542},"browse open ... --local",{"type":53,"value":1544}," uses a clean isolated local browser by default, which is best for reproducible localhost QA runs.",{"type":47,"tag":56,"props":1546,"children":1547},{},[1548],{"type":53,"value":1549},"Use local-mode variants only when needed:",{"type":47,"tag":75,"props":1551,"children":1552},{},[1553,1564],{"type":47,"tag":79,"props":1554,"children":1555},{},[1556,1562],{"type":47,"tag":299,"props":1557,"children":1559},{"className":1558},[],[1560],{"type":53,"value":1561},"browse open \u003Curl> --auto-connect",{"type":53,"value":1563}," — auto-discover an existing debuggable local Chrome. Use this only when the test explicitly needs existing local login\u002Fcookies\u002Fstate.",{"type":47,"tag":79,"props":1565,"children":1566},{},[1567,1573],{"type":47,"tag":299,"props":1568,"children":1570},{"className":1569},[],[1571],{"type":53,"value":1572},"browse open \u003Curl> --cdp \u003Cport|url>",{"type":53,"value":1574}," — attach to a specific CDP target (explicit local browser attach).",{"type":47,"tag":129,"props":1576,"children":1578},{"id":1577},"remote-mode-deployed-sites-via-cookie-sync",[1579],{"type":53,"value":1580},"Remote Mode (deployed sites via cookie-sync)",{"type":47,"tag":292,"props":1582,"children":1584},{"className":567,"code":1583,"language":569,"meta":301,"style":301},"# Step 1: Sync cookies from local Chrome to Browserbase\nnode .claude\u002Fskills\u002Fcookie-sync\u002Fscripts\u002Fcookie-sync.mjs --domains your-app.com\n# Output: Context ID: ctx_abc123\n\n# Step 2: Open in remote mode with the synced context\nSESSION_JSON=\"$(browse cloud sessions create --context-id ctx_abc123 --persist --keep-alive)\"\nSESSION_ID=\"$(echo \"$SESSION_JSON\" | jq -r .id)\"\nCONNECT_URL=\"$(echo \"$SESSION_JSON\" | jq -r .connectUrl)\"\n\nbrowse open https:\u002F\u002Fstaging.your-app.com --cdp \"$CONNECT_URL\"\nbrowse snapshot\n# ... run tests ...\nbrowse stop\nbrowse cloud sessions update \"$SESSION_ID\" --status REQUEST_RELEASE\n",[1585],{"type":47,"tag":299,"props":1586,"children":1587},{"__ignoreMap":301},[1588,1596,1619,1627,1634,1642,1674,1728,1777,1784,1818,1829,1837,1849],{"type":47,"tag":575,"props":1589,"children":1590},{"class":577,"line":578},[1591],{"type":47,"tag":575,"props":1592,"children":1593},{"style":582},[1594],{"type":53,"value":1595},"# Step 1: Sync cookies from local Chrome to Browserbase\n",{"type":47,"tag":575,"props":1597,"children":1598},{"class":577,"line":588},[1599,1604,1609,1614],{"type":47,"tag":575,"props":1600,"children":1601},{"style":592},[1602],{"type":53,"value":1603},"node",{"type":47,"tag":575,"props":1605,"children":1606},{"style":597},[1607],{"type":53,"value":1608}," .claude\u002Fskills\u002Fcookie-sync\u002Fscripts\u002Fcookie-sync.mjs",{"type":47,"tag":575,"props":1610,"children":1611},{"style":597},[1612],{"type":53,"value":1613}," --domains",{"type":47,"tag":575,"props":1615,"children":1616},{"style":597},[1617],{"type":53,"value":1618}," your-app.com\n",{"type":47,"tag":575,"props":1620,"children":1621},{"class":577,"line":640},[1622],{"type":47,"tag":575,"props":1623,"children":1624},{"style":582},[1625],{"type":53,"value":1626},"# Output: Context ID: ctx_abc123\n",{"type":47,"tag":575,"props":1628,"children":1629},{"class":577,"line":650},[1630],{"type":47,"tag":575,"props":1631,"children":1632},{"emptyLinePlaceholder":644},[1633],{"type":53,"value":647},{"type":47,"tag":575,"props":1635,"children":1636},{"class":577,"line":659},[1637],{"type":47,"tag":575,"props":1638,"children":1639},{"style":582},[1640],{"type":53,"value":1641},"# Step 2: Open in remote mode with the synced context\n",{"type":47,"tag":575,"props":1643,"children":1644},{"class":577,"line":672},[1645,1650,1655,1660,1664,1669],{"type":47,"tag":575,"props":1646,"children":1647},{"style":624},[1648],{"type":53,"value":1649},"SESSION_JSON",{"type":47,"tag":575,"props":1651,"children":1652},{"style":613},[1653],{"type":53,"value":1654},"=",{"type":47,"tag":575,"props":1656,"children":1657},{"style":613},[1658],{"type":53,"value":1659},"\"$(",{"type":47,"tag":575,"props":1661,"children":1662},{"style":592},[1663],{"type":53,"value":314},{"type":47,"tag":575,"props":1665,"children":1666},{"style":597},[1667],{"type":53,"value":1668}," cloud sessions create --context-id ctx_abc123 --persist --keep-alive",{"type":47,"tag":575,"props":1670,"children":1671},{"style":613},[1672],{"type":53,"value":1673},")\"\n",{"type":47,"tag":575,"props":1675,"children":1676},{"class":577,"line":681},[1677,1682,1686,1690,1695,1700,1705,1709,1714,1719,1724],{"type":47,"tag":575,"props":1678,"children":1679},{"style":624},[1680],{"type":53,"value":1681},"SESSION_ID",{"type":47,"tag":575,"props":1683,"children":1684},{"style":613},[1685],{"type":53,"value":1654},{"type":47,"tag":575,"props":1687,"children":1688},{"style":613},[1689],{"type":53,"value":1659},{"type":47,"tag":575,"props":1691,"children":1692},{"style":1116},[1693],{"type":53,"value":1694},"echo",{"type":47,"tag":575,"props":1696,"children":1697},{"style":613},[1698],{"type":53,"value":1699}," \"",{"type":47,"tag":575,"props":1701,"children":1702},{"style":624},[1703],{"type":53,"value":1704},"$SESSION_JSON",{"type":47,"tag":575,"props":1706,"children":1707},{"style":613},[1708],{"type":53,"value":1231},{"type":47,"tag":575,"props":1710,"children":1711},{"style":613},[1712],{"type":53,"value":1713}," |",{"type":47,"tag":575,"props":1715,"children":1716},{"style":592},[1717],{"type":53,"value":1718}," jq",{"type":47,"tag":575,"props":1720,"children":1721},{"style":597},[1722],{"type":53,"value":1723}," -r .id",{"type":47,"tag":575,"props":1725,"children":1726},{"style":613},[1727],{"type":53,"value":1673},{"type":47,"tag":575,"props":1729,"children":1730},{"class":577,"line":1005},[1731,1736,1740,1744,1748,1752,1756,1760,1764,1768,1773],{"type":47,"tag":575,"props":1732,"children":1733},{"style":624},[1734],{"type":53,"value":1735},"CONNECT_URL",{"type":47,"tag":575,"props":1737,"children":1738},{"style":613},[1739],{"type":53,"value":1654},{"type":47,"tag":575,"props":1741,"children":1742},{"style":613},[1743],{"type":53,"value":1659},{"type":47,"tag":575,"props":1745,"children":1746},{"style":1116},[1747],{"type":53,"value":1694},{"type":47,"tag":575,"props":1749,"children":1750},{"style":613},[1751],{"type":53,"value":1699},{"type":47,"tag":575,"props":1753,"children":1754},{"style":624},[1755],{"type":53,"value":1704},{"type":47,"tag":575,"props":1757,"children":1758},{"style":613},[1759],{"type":53,"value":1231},{"type":47,"tag":575,"props":1761,"children":1762},{"style":613},[1763],{"type":53,"value":1713},{"type":47,"tag":575,"props":1765,"children":1766},{"style":592},[1767],{"type":53,"value":1718},{"type":47,"tag":575,"props":1769,"children":1770},{"style":597},[1771],{"type":53,"value":1772}," -r .connectUrl",{"type":47,"tag":575,"props":1774,"children":1775},{"style":613},[1776],{"type":53,"value":1673},{"type":47,"tag":575,"props":1778,"children":1779},{"class":577,"line":1014},[1780],{"type":47,"tag":575,"props":1781,"children":1782},{"emptyLinePlaceholder":644},[1783],{"type":53,"value":647},{"type":47,"tag":575,"props":1785,"children":1786},{"class":577,"line":1026},[1787,1791,1795,1800,1805,1809,1814],{"type":47,"tag":575,"props":1788,"children":1789},{"style":592},[1790],{"type":53,"value":314},{"type":47,"tag":575,"props":1792,"children":1793},{"style":597},[1794],{"type":53,"value":1523},{"type":47,"tag":575,"props":1796,"children":1797},{"style":597},[1798],{"type":53,"value":1799}," https:\u002F\u002Fstaging.your-app.com",{"type":47,"tag":575,"props":1801,"children":1802},{"style":597},[1803],{"type":53,"value":1804}," --cdp",{"type":47,"tag":575,"props":1806,"children":1807},{"style":613},[1808],{"type":53,"value":1699},{"type":47,"tag":575,"props":1810,"children":1811},{"style":624},[1812],{"type":53,"value":1813},"$CONNECT_URL",{"type":47,"tag":575,"props":1815,"children":1816},{"style":613},[1817],{"type":53,"value":1306},{"type":47,"tag":575,"props":1819,"children":1820},{"class":577,"line":1035},[1821,1825],{"type":47,"tag":575,"props":1822,"children":1823},{"style":592},[1824],{"type":53,"value":314},{"type":47,"tag":575,"props":1826,"children":1827},{"style":597},[1828],{"type":53,"value":955},{"type":47,"tag":575,"props":1830,"children":1831},{"class":577,"line":1043},[1832],{"type":47,"tag":575,"props":1833,"children":1834},{"style":582},[1835],{"type":53,"value":1836},"# ... run tests ...\n",{"type":47,"tag":575,"props":1838,"children":1839},{"class":577,"line":1052},[1840,1844],{"type":47,"tag":575,"props":1841,"children":1842},{"style":592},[1843],{"type":53,"value":314},{"type":47,"tag":575,"props":1845,"children":1846},{"style":597},[1847],{"type":53,"value":1848}," stop\n",{"type":47,"tag":575,"props":1850,"children":1851},{"class":577,"line":1061},[1852,1856,1861,1866,1871,1875,1880,1884,1889],{"type":47,"tag":575,"props":1853,"children":1854},{"style":592},[1855],{"type":53,"value":314},{"type":47,"tag":575,"props":1857,"children":1858},{"style":597},[1859],{"type":53,"value":1860}," cloud",{"type":47,"tag":575,"props":1862,"children":1863},{"style":597},[1864],{"type":53,"value":1865}," sessions",{"type":47,"tag":575,"props":1867,"children":1868},{"style":597},[1869],{"type":53,"value":1870}," update",{"type":47,"tag":575,"props":1872,"children":1873},{"style":613},[1874],{"type":53,"value":1699},{"type":47,"tag":575,"props":1876,"children":1877},{"style":624},[1878],{"type":53,"value":1879},"$SESSION_ID",{"type":47,"tag":575,"props":1881,"children":1882},{"style":613},[1883],{"type":53,"value":1231},{"type":47,"tag":575,"props":1885,"children":1886},{"style":597},[1887],{"type":53,"value":1888}," --status",{"type":47,"tag":575,"props":1890,"children":1891},{"style":597},[1892],{"type":53,"value":1893}," REQUEST_RELEASE\n",{"type":47,"tag":56,"props":1895,"children":1896},{},[1897,1899,1905,1906,1912,1913,1919,1920],{"type":53,"value":1898},"Cookie-sync flags: ",{"type":47,"tag":299,"props":1900,"children":1902},{"className":1901},[],[1903],{"type":53,"value":1904},"--domains",{"type":53,"value":497},{"type":47,"tag":299,"props":1907,"children":1909},{"className":1908},[],[1910],{"type":53,"value":1911},"--context",{"type":53,"value":497},{"type":47,"tag":299,"props":1914,"children":1916},{"className":1915},[],[1917],{"type":53,"value":1918},"--verified",{"type":53,"value":497},{"type":47,"tag":299,"props":1921,"children":1923},{"className":1922},[],[1924],{"type":53,"value":1925},"--proxy \"City,ST,US\"",{"type":47,"tag":110,"props":1927,"children":1929},{"id":1928},"workflow-a-diff-driven-testing",[1930],{"type":53,"value":1931},"Workflow A: Diff-Driven Testing",{"type":47,"tag":129,"props":1933,"children":1935},{"id":1934},"phase-1-analyze-the-diff",[1936],{"type":53,"value":1937},"Phase 1: Analyze the diff",{"type":47,"tag":292,"props":1939,"children":1941},{"className":567,"code":1940,"language":569,"meta":301,"style":301},"git diff --name-only HEAD~1          # or: git diff --name-only \u002F git diff --name-only main...HEAD\ngit diff HEAD~1 -- \u003Cfile>            # read actual changes\n",[1942],{"type":47,"tag":299,"props":1943,"children":1944},{"__ignoreMap":301},[1945,1973],{"type":47,"tag":575,"props":1946,"children":1947},{"class":577,"line":578},[1948,1953,1958,1963,1968],{"type":47,"tag":575,"props":1949,"children":1950},{"style":592},[1951],{"type":53,"value":1952},"git",{"type":47,"tag":575,"props":1954,"children":1955},{"style":597},[1956],{"type":53,"value":1957}," diff",{"type":47,"tag":575,"props":1959,"children":1960},{"style":597},[1961],{"type":53,"value":1962}," --name-only",{"type":47,"tag":575,"props":1964,"children":1965},{"style":597},[1966],{"type":53,"value":1967}," HEAD~1",{"type":47,"tag":575,"props":1969,"children":1970},{"style":582},[1971],{"type":53,"value":1972},"          # or: git diff --name-only \u002F git diff --name-only main...HEAD\n",{"type":47,"tag":575,"props":1974,"children":1975},{"class":577,"line":588},[1976,1980,1984,1988,1993,1998,2003,2008,2012],{"type":47,"tag":575,"props":1977,"children":1978},{"style":592},[1979],{"type":53,"value":1952},{"type":47,"tag":575,"props":1981,"children":1982},{"style":597},[1983],{"type":53,"value":1957},{"type":47,"tag":575,"props":1985,"children":1986},{"style":597},[1987],{"type":53,"value":1967},{"type":47,"tag":575,"props":1989,"children":1990},{"style":597},[1991],{"type":53,"value":1992}," --",{"type":47,"tag":575,"props":1994,"children":1995},{"style":613},[1996],{"type":53,"value":1997}," \u003C",{"type":47,"tag":575,"props":1999,"children":2000},{"style":597},[2001],{"type":53,"value":2002},"fil",{"type":47,"tag":575,"props":2004,"children":2005},{"style":624},[2006],{"type":53,"value":2007},"e",{"type":47,"tag":575,"props":2009,"children":2010},{"style":613},[2011],{"type":53,"value":632},{"type":47,"tag":575,"props":2013,"children":2014},{"style":582},[2015],{"type":53,"value":2016},"            # read actual changes\n",{"type":47,"tag":56,"props":2018,"children":2019},{},[2020],{"type":53,"value":2021},"Categorize changed files:",{"type":47,"tag":1358,"props":2023,"children":2024},{},[2025,2046],{"type":47,"tag":1362,"props":2026,"children":2027},{},[2028],{"type":47,"tag":1366,"props":2029,"children":2030},{},[2031,2036,2041],{"type":47,"tag":1370,"props":2032,"children":2033},{},[2034],{"type":53,"value":2035},"File pattern",{"type":47,"tag":1370,"props":2037,"children":2038},{},[2039],{"type":53,"value":2040},"UI impact",{"type":47,"tag":1370,"props":2042,"children":2043},{},[2044],{"type":53,"value":2045},"What to test",{"type":47,"tag":1391,"props":2047,"children":2048},{},[2049,2092,2128,2164,2200,2236,2272],{"type":47,"tag":1366,"props":2050,"children":2051},{},[2052,2082,2087],{"type":47,"tag":1398,"props":2053,"children":2054},{},[2055,2061,2062,2068,2069,2075,2076],{"type":47,"tag":299,"props":2056,"children":2058},{"className":2057},[],[2059],{"type":53,"value":2060},"*.tsx",{"type":53,"value":497},{"type":47,"tag":299,"props":2063,"children":2065},{"className":2064},[],[2066],{"type":53,"value":2067},"*.jsx",{"type":53,"value":497},{"type":47,"tag":299,"props":2070,"children":2072},{"className":2071},[],[2073],{"type":53,"value":2074},"*.vue",{"type":53,"value":497},{"type":47,"tag":299,"props":2077,"children":2079},{"className":2078},[],[2080],{"type":53,"value":2081},"*.svelte",{"type":47,"tag":1398,"props":2083,"children":2084},{},[2085],{"type":53,"value":2086},"Component",{"type":47,"tag":1398,"props":2088,"children":2089},{},[2090],{"type":53,"value":2091},"Render, interaction, state, edge cases",{"type":47,"tag":1366,"props":2093,"children":2094},{},[2095,2118,2123],{"type":47,"tag":1398,"props":2096,"children":2097},{},[2098,2104,2105,2111,2112],{"type":47,"tag":299,"props":2099,"children":2101},{"className":2100},[],[2102],{"type":53,"value":2103},"pages\u002F**",{"type":53,"value":497},{"type":47,"tag":299,"props":2106,"children":2108},{"className":2107},[],[2109],{"type":53,"value":2110},"app\u002F**",{"type":53,"value":497},{"type":47,"tag":299,"props":2113,"children":2115},{"className":2114},[],[2116],{"type":53,"value":2117},"src\u002Froutes\u002F**",{"type":47,"tag":1398,"props":2119,"children":2120},{},[2121],{"type":53,"value":2122},"Route\u002Fpage",{"type":47,"tag":1398,"props":2124,"children":2125},{},[2126],{"type":53,"value":2127},"Navigation, page load, content, 404 handling",{"type":47,"tag":1366,"props":2129,"children":2130},{},[2131,2154,2159],{"type":47,"tag":1398,"props":2132,"children":2133},{},[2134,2140,2141,2147,2148],{"type":47,"tag":299,"props":2135,"children":2137},{"className":2136},[],[2138],{"type":53,"value":2139},"*.css",{"type":53,"value":497},{"type":47,"tag":299,"props":2142,"children":2144},{"className":2143},[],[2145],{"type":53,"value":2146},"*.scss",{"type":53,"value":497},{"type":47,"tag":299,"props":2149,"children":2151},{"className":2150},[],[2152],{"type":53,"value":2153},"*.module.css",{"type":47,"tag":1398,"props":2155,"children":2156},{},[2157],{"type":53,"value":2158},"Style",{"type":47,"tag":1398,"props":2160,"children":2161},{},[2162],{"type":53,"value":2163},"Visual appearance (screenshot), responsive",{"type":47,"tag":1366,"props":2165,"children":2166},{},[2167,2190,2195],{"type":47,"tag":1398,"props":2168,"children":2169},{},[2170,2176,2177,2183,2184],{"type":47,"tag":299,"props":2171,"children":2173},{"className":2172},[],[2174],{"type":53,"value":2175},"*form*",{"type":53,"value":497},{"type":47,"tag":299,"props":2178,"children":2180},{"className":2179},[],[2181],{"type":53,"value":2182},"*input*",{"type":53,"value":497},{"type":47,"tag":299,"props":2185,"children":2187},{"className":2186},[],[2188],{"type":53,"value":2189},"*field*",{"type":47,"tag":1398,"props":2191,"children":2192},{},[2193],{"type":53,"value":2194},"Form",{"type":47,"tag":1398,"props":2196,"children":2197},{},[2198],{"type":53,"value":2199},"Validation, submission, empty input, long input, special chars",{"type":47,"tag":1366,"props":2201,"children":2202},{},[2203,2226,2231],{"type":47,"tag":1398,"props":2204,"children":2205},{},[2206,2212,2213,2219,2220],{"type":47,"tag":299,"props":2207,"children":2209},{"className":2208},[],[2210],{"type":53,"value":2211},"*modal*",{"type":53,"value":497},{"type":47,"tag":299,"props":2214,"children":2216},{"className":2215},[],[2217],{"type":53,"value":2218},"*dialog*",{"type":53,"value":497},{"type":47,"tag":299,"props":2221,"children":2223},{"className":2222},[],[2224],{"type":53,"value":2225},"*dropdown*",{"type":47,"tag":1398,"props":2227,"children":2228},{},[2229],{"type":53,"value":2230},"Interactive",{"type":47,"tag":1398,"props":2232,"children":2233},{},[2234],{"type":53,"value":2235},"Open\u002Fclose, escape, focus trap, cancel vs confirm",{"type":47,"tag":1366,"props":2237,"children":2238},{},[2239,2262,2267],{"type":47,"tag":1398,"props":2240,"children":2241},{},[2242,2248,2249,2255,2256],{"type":47,"tag":299,"props":2243,"children":2245},{"className":2244},[],[2246],{"type":53,"value":2247},"*nav*",{"type":53,"value":497},{"type":47,"tag":299,"props":2250,"children":2252},{"className":2251},[],[2253],{"type":53,"value":2254},"*menu*",{"type":53,"value":497},{"type":47,"tag":299,"props":2257,"children":2259},{"className":2258},[],[2260],{"type":53,"value":2261},"*header*",{"type":47,"tag":1398,"props":2263,"children":2264},{},[2265],{"type":53,"value":2266},"Navigation",{"type":47,"tag":1398,"props":2268,"children":2269},{},[2270],{"type":53,"value":2271},"Links, active states, routing, keyboard nav",{"type":47,"tag":1366,"props":2273,"children":2274},{},[2275,2280,2285],{"type":47,"tag":1398,"props":2276,"children":2277},{},[2278],{"type":53,"value":2279},"Non-UI files only",{"type":47,"tag":1398,"props":2281,"children":2282},{},[2283],{"type":53,"value":2284},"None",{"type":47,"tag":1398,"props":2286,"children":2287},{},[2288],{"type":53,"value":2289},"Skip — report \"no UI tests needed\"",{"type":47,"tag":129,"props":2291,"children":2293},{"id":2292},"phase-2-map-files-to-urls",[2294],{"type":53,"value":2295},"Phase 2: Map files to URLs",{"type":47,"tag":56,"props":2297,"children":2298},{},[2299,2301],{"type":53,"value":2300},"Detect framework: ",{"type":47,"tag":299,"props":2302,"children":2304},{"className":2303},[],[2305],{"type":53,"value":2306},"cat package.json | grep -E '\"(next|react|vue|nuxt|svelte|@sveltejs|angular|vite)\"'",{"type":47,"tag":1358,"props":2308,"children":2309},{},[2310,2331],{"type":47,"tag":1362,"props":2311,"children":2312},{},[2313],{"type":47,"tag":1366,"props":2314,"children":2315},{},[2316,2321,2326],{"type":47,"tag":1370,"props":2317,"children":2318},{},[2319],{"type":53,"value":2320},"Framework",{"type":47,"tag":1370,"props":2322,"children":2323},{},[2324],{"type":53,"value":2325},"Default port",{"type":47,"tag":1370,"props":2327,"children":2328},{},[2329],{"type":53,"value":2330},"File → URL pattern",{"type":47,"tag":1391,"props":2332,"children":2333},{},[2334,2364,2392,2410,2438,2465],{"type":47,"tag":1366,"props":2335,"children":2336},{},[2337,2342,2347],{"type":47,"tag":1398,"props":2338,"children":2339},{},[2340],{"type":53,"value":2341},"Next.js App Router",{"type":47,"tag":1398,"props":2343,"children":2344},{},[2345],{"type":53,"value":2346},"3000",{"type":47,"tag":1398,"props":2348,"children":2349},{},[2350,2356,2358],{"type":47,"tag":299,"props":2351,"children":2353},{"className":2352},[],[2354],{"type":53,"value":2355},"app\u002Fdashboard\u002Fpage.tsx",{"type":53,"value":2357}," → ",{"type":47,"tag":299,"props":2359,"children":2361},{"className":2360},[],[2362],{"type":53,"value":2363},"\u002Fdashboard",{"type":47,"tag":1366,"props":2365,"children":2366},{},[2367,2372,2376],{"type":47,"tag":1398,"props":2368,"children":2369},{},[2370],{"type":53,"value":2371},"Next.js Pages Router",{"type":47,"tag":1398,"props":2373,"children":2374},{},[2375],{"type":53,"value":2346},{"type":47,"tag":1398,"props":2377,"children":2378},{},[2379,2385,2386],{"type":47,"tag":299,"props":2380,"children":2382},{"className":2381},[],[2383],{"type":53,"value":2384},"pages\u002Fabout.tsx",{"type":53,"value":2357},{"type":47,"tag":299,"props":2387,"children":2389},{"className":2388},[],[2390],{"type":53,"value":2391},"\u002Fabout",{"type":47,"tag":1366,"props":2393,"children":2394},{},[2395,2400,2405],{"type":47,"tag":1398,"props":2396,"children":2397},{},[2398],{"type":53,"value":2399},"Vite",{"type":47,"tag":1398,"props":2401,"children":2402},{},[2403],{"type":53,"value":2404},"5173",{"type":47,"tag":1398,"props":2406,"children":2407},{},[2408],{"type":53,"value":2409},"Check router config",{"type":47,"tag":1366,"props":2411,"children":2412},{},[2413,2418,2422],{"type":47,"tag":1398,"props":2414,"children":2415},{},[2416],{"type":53,"value":2417},"Nuxt",{"type":47,"tag":1398,"props":2419,"children":2420},{},[2421],{"type":53,"value":2346},{"type":47,"tag":1398,"props":2423,"children":2424},{},[2425,2431,2432],{"type":47,"tag":299,"props":2426,"children":2428},{"className":2427},[],[2429],{"type":53,"value":2430},"pages\u002Findex.vue",{"type":53,"value":2357},{"type":47,"tag":299,"props":2433,"children":2435},{"className":2434},[],[2436],{"type":53,"value":2437},"\u002F",{"type":47,"tag":1366,"props":2439,"children":2440},{},[2441,2446,2450],{"type":47,"tag":1398,"props":2442,"children":2443},{},[2444],{"type":53,"value":2445},"SvelteKit",{"type":47,"tag":1398,"props":2447,"children":2448},{},[2449],{"type":53,"value":2404},{"type":47,"tag":1398,"props":2451,"children":2452},{},[2453,2459,2460],{"type":47,"tag":299,"props":2454,"children":2456},{"className":2455},[],[2457],{"type":53,"value":2458},"src\u002Froutes\u002F+page.svelte",{"type":53,"value":2357},{"type":47,"tag":299,"props":2461,"children":2463},{"className":2462},[],[2464],{"type":53,"value":2437},{"type":47,"tag":1366,"props":2466,"children":2467},{},[2468,2473,2478],{"type":47,"tag":1398,"props":2469,"children":2470},{},[2471],{"type":53,"value":2472},"Angular",{"type":47,"tag":1398,"props":2474,"children":2475},{},[2476],{"type":53,"value":2477},"4200",{"type":47,"tag":1398,"props":2479,"children":2480},{},[2481],{"type":53,"value":2482},"Check routing module",{"type":47,"tag":129,"props":2484,"children":2486},{"id":2485},"phase-3-ensure-the-right-code-is-running",[2487],{"type":53,"value":2488},"Phase 3: Ensure the right code is running",{"type":47,"tag":56,"props":2490,"children":2491},{},[2492],{"type":53,"value":2493},"Before testing, verify the dev server is serving the code from the diff — not a stale branch.",{"type":47,"tag":56,"props":2495,"children":2496},{},[2497],{"type":47,"tag":62,"props":2498,"children":2499},{},[2500],{"type":53,"value":2501},"If testing a PR or specific branch:",{"type":47,"tag":292,"props":2503,"children":2505},{"className":567,"code":2504,"language":569,"meta":301,"style":301},"# Check what branch is currently checked out\ngit branch --show-current\n\n# If it's not the PR branch, switch to it\ngit fetch origin \u003Cbranch> && git checkout \u003Cbranch>\n\n# Install deps — the lockfile may differ between branches\nyarn install  # or npm install \u002F pnpm install\n",[2506],{"type":47,"tag":299,"props":2507,"children":2508},{"__ignoreMap":301},[2509,2517,2534,2541,2549,2616,2623,2631],{"type":47,"tag":575,"props":2510,"children":2511},{"class":577,"line":578},[2512],{"type":47,"tag":575,"props":2513,"children":2514},{"style":582},[2515],{"type":53,"value":2516},"# Check what branch is currently checked out\n",{"type":47,"tag":575,"props":2518,"children":2519},{"class":577,"line":588},[2520,2524,2529],{"type":47,"tag":575,"props":2521,"children":2522},{"style":592},[2523],{"type":53,"value":1952},{"type":47,"tag":575,"props":2525,"children":2526},{"style":597},[2527],{"type":53,"value":2528}," branch",{"type":47,"tag":575,"props":2530,"children":2531},{"style":597},[2532],{"type":53,"value":2533}," --show-current\n",{"type":47,"tag":575,"props":2535,"children":2536},{"class":577,"line":640},[2537],{"type":47,"tag":575,"props":2538,"children":2539},{"emptyLinePlaceholder":644},[2540],{"type":53,"value":647},{"type":47,"tag":575,"props":2542,"children":2543},{"class":577,"line":650},[2544],{"type":47,"tag":575,"props":2545,"children":2546},{"style":582},[2547],{"type":53,"value":2548},"# If it's not the PR branch, switch to it\n",{"type":47,"tag":575,"props":2550,"children":2551},{"class":577,"line":659},[2552,2556,2561,2566,2570,2575,2580,2584,2589,2594,2599,2603,2607,2611],{"type":47,"tag":575,"props":2553,"children":2554},{"style":592},[2555],{"type":53,"value":1952},{"type":47,"tag":575,"props":2557,"children":2558},{"style":597},[2559],{"type":53,"value":2560}," fetch",{"type":47,"tag":575,"props":2562,"children":2563},{"style":597},[2564],{"type":53,"value":2565}," origin",{"type":47,"tag":575,"props":2567,"children":2568},{"style":613},[2569],{"type":53,"value":1997},{"type":47,"tag":575,"props":2571,"children":2572},{"style":597},[2573],{"type":53,"value":2574},"branc",{"type":47,"tag":575,"props":2576,"children":2577},{"style":624},[2578],{"type":53,"value":2579},"h",{"type":47,"tag":575,"props":2581,"children":2582},{"style":613},[2583],{"type":53,"value":632},{"type":47,"tag":575,"props":2585,"children":2586},{"style":613},[2587],{"type":53,"value":2588}," &&",{"type":47,"tag":575,"props":2590,"children":2591},{"style":592},[2592],{"type":53,"value":2593}," git",{"type":47,"tag":575,"props":2595,"children":2596},{"style":597},[2597],{"type":53,"value":2598}," checkout",{"type":47,"tag":575,"props":2600,"children":2601},{"style":613},[2602],{"type":53,"value":1997},{"type":47,"tag":575,"props":2604,"children":2605},{"style":597},[2606],{"type":53,"value":2574},{"type":47,"tag":575,"props":2608,"children":2609},{"style":624},[2610],{"type":53,"value":2579},{"type":47,"tag":575,"props":2612,"children":2613},{"style":613},[2614],{"type":53,"value":2615},">\n",{"type":47,"tag":575,"props":2617,"children":2618},{"class":577,"line":672},[2619],{"type":47,"tag":575,"props":2620,"children":2621},{"emptyLinePlaceholder":644},[2622],{"type":53,"value":647},{"type":47,"tag":575,"props":2624,"children":2625},{"class":577,"line":681},[2626],{"type":47,"tag":575,"props":2627,"children":2628},{"style":582},[2629],{"type":53,"value":2630},"# Install deps — the lockfile may differ between branches\n",{"type":47,"tag":575,"props":2632,"children":2633},{"class":577,"line":1005},[2634,2639,2643],{"type":47,"tag":575,"props":2635,"children":2636},{"style":592},[2637],{"type":53,"value":2638},"yarn",{"type":47,"tag":575,"props":2640,"children":2641},{"style":597},[2642],{"type":53,"value":1139},{"type":47,"tag":575,"props":2644,"children":2645},{"style":582},[2646],{"type":53,"value":2647},"  # or npm install \u002F pnpm install\n",{"type":47,"tag":56,"props":2649,"children":2650},{},[2651],{"type":53,"value":2652},"If the dev server was already running on a different branch, restart it after checkout.",{"type":47,"tag":56,"props":2654,"children":2655},{},[2656],{"type":47,"tag":62,"props":2657,"children":2658},{},[2659],{"type":53,"value":2660},"Find a running dev server:",{"type":47,"tag":292,"props":2662,"children":2664},{"className":567,"code":2663,"language":569,"meta":301,"style":301},"for port in 3000 3001 5173 4200 8080 8000 5000; do\n  s=$(curl -s -o \u002Fdev\u002Fnull -w \"%{http_code}\" \"http:\u002F\u002Flocalhost:$port\" 2>\u002Fdev\u002Fnull)\n  if [ \"$s\" != \"000\" ]; then echo \"Dev server on port $port (HTTP $s)\"; fi\ndone\n",[2665],{"type":47,"tag":299,"props":2666,"children":2667},{"__ignoreMap":301},[2668,2732,2816,2914],{"type":47,"tag":575,"props":2669,"children":2670},{"class":577,"line":578},[2671,2677,2682,2687,2692,2697,2702,2707,2712,2717,2722,2727],{"type":47,"tag":575,"props":2672,"children":2674},{"style":2673},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[2675],{"type":53,"value":2676},"for",{"type":47,"tag":575,"props":2678,"children":2679},{"style":624},[2680],{"type":53,"value":2681}," port ",{"type":47,"tag":575,"props":2683,"children":2684},{"style":2673},[2685],{"type":53,"value":2686},"in",{"type":47,"tag":575,"props":2688,"children":2689},{"style":597},[2690],{"type":53,"value":2691}," 3000",{"type":47,"tag":575,"props":2693,"children":2694},{"style":597},[2695],{"type":53,"value":2696}," 3001",{"type":47,"tag":575,"props":2698,"children":2699},{"style":597},[2700],{"type":53,"value":2701}," 5173",{"type":47,"tag":575,"props":2703,"children":2704},{"style":597},[2705],{"type":53,"value":2706}," 4200",{"type":47,"tag":575,"props":2708,"children":2709},{"style":597},[2710],{"type":53,"value":2711}," 8080",{"type":47,"tag":575,"props":2713,"children":2714},{"style":597},[2715],{"type":53,"value":2716}," 8000",{"type":47,"tag":575,"props":2718,"children":2719},{"style":597},[2720],{"type":53,"value":2721}," 5000",{"type":47,"tag":575,"props":2723,"children":2724},{"style":613},[2725],{"type":53,"value":2726},";",{"type":47,"tag":575,"props":2728,"children":2729},{"style":2673},[2730],{"type":53,"value":2731}," do\n",{"type":47,"tag":575,"props":2733,"children":2734},{"class":577,"line":588},[2735,2740,2745,2750,2755,2760,2765,2770,2774,2779,2783,2787,2792,2797,2801,2806,2811],{"type":47,"tag":575,"props":2736,"children":2737},{"style":624},[2738],{"type":53,"value":2739},"  s",{"type":47,"tag":575,"props":2741,"children":2742},{"style":613},[2743],{"type":53,"value":2744},"=$(",{"type":47,"tag":575,"props":2746,"children":2747},{"style":592},[2748],{"type":53,"value":2749},"curl",{"type":47,"tag":575,"props":2751,"children":2752},{"style":597},[2753],{"type":53,"value":2754}," -s",{"type":47,"tag":575,"props":2756,"children":2757},{"style":597},[2758],{"type":53,"value":2759}," -o",{"type":47,"tag":575,"props":2761,"children":2762},{"style":597},[2763],{"type":53,"value":2764}," \u002Fdev\u002Fnull",{"type":47,"tag":575,"props":2766,"children":2767},{"style":597},[2768],{"type":53,"value":2769}," -w",{"type":47,"tag":575,"props":2771,"children":2772},{"style":613},[2773],{"type":53,"value":1699},{"type":47,"tag":575,"props":2775,"children":2776},{"style":597},[2777],{"type":53,"value":2778},"%{http_code}",{"type":47,"tag":575,"props":2780,"children":2781},{"style":613},[2782],{"type":53,"value":1231},{"type":47,"tag":575,"props":2784,"children":2785},{"style":613},[2786],{"type":53,"value":1699},{"type":47,"tag":575,"props":2788,"children":2789},{"style":597},[2790],{"type":53,"value":2791},"http:\u002F\u002Flocalhost:",{"type":47,"tag":575,"props":2793,"children":2794},{"style":624},[2795],{"type":53,"value":2796},"$port",{"type":47,"tag":575,"props":2798,"children":2799},{"style":613},[2800],{"type":53,"value":1231},{"type":47,"tag":575,"props":2802,"children":2803},{"style":613},[2804],{"type":53,"value":2805}," 2>",{"type":47,"tag":575,"props":2807,"children":2808},{"style":597},[2809],{"type":53,"value":2810},"\u002Fdev\u002Fnull",{"type":47,"tag":575,"props":2812,"children":2813},{"style":613},[2814],{"type":53,"value":2815},")\n",{"type":47,"tag":575,"props":2817,"children":2818},{"class":577,"line":640},[2819,2824,2829,2833,2838,2842,2847,2851,2856,2860,2865,2870,2875,2879,2884,2888,2893,2897,2901,2905,2909],{"type":47,"tag":575,"props":2820,"children":2821},{"style":2673},[2822],{"type":53,"value":2823},"  if",{"type":47,"tag":575,"props":2825,"children":2826},{"style":613},[2827],{"type":53,"value":2828}," [",{"type":47,"tag":575,"props":2830,"children":2831},{"style":613},[2832],{"type":53,"value":1699},{"type":47,"tag":575,"props":2834,"children":2835},{"style":624},[2836],{"type":53,"value":2837},"$s",{"type":47,"tag":575,"props":2839,"children":2840},{"style":613},[2841],{"type":53,"value":1231},{"type":47,"tag":575,"props":2843,"children":2844},{"style":613},[2845],{"type":53,"value":2846}," !=",{"type":47,"tag":575,"props":2848,"children":2849},{"style":613},[2850],{"type":53,"value":1699},{"type":47,"tag":575,"props":2852,"children":2853},{"style":597},[2854],{"type":53,"value":2855},"000",{"type":47,"tag":575,"props":2857,"children":2858},{"style":613},[2859],{"type":53,"value":1231},{"type":47,"tag":575,"props":2861,"children":2862},{"style":613},[2863],{"type":53,"value":2864}," ];",{"type":47,"tag":575,"props":2866,"children":2867},{"style":2673},[2868],{"type":53,"value":2869}," then",{"type":47,"tag":575,"props":2871,"children":2872},{"style":1116},[2873],{"type":53,"value":2874}," echo",{"type":47,"tag":575,"props":2876,"children":2877},{"style":613},[2878],{"type":53,"value":1699},{"type":47,"tag":575,"props":2880,"children":2881},{"style":597},[2882],{"type":53,"value":2883},"Dev server on port ",{"type":47,"tag":575,"props":2885,"children":2886},{"style":624},[2887],{"type":53,"value":2796},{"type":47,"tag":575,"props":2889,"children":2890},{"style":597},[2891],{"type":53,"value":2892}," (HTTP ",{"type":47,"tag":575,"props":2894,"children":2895},{"style":624},[2896],{"type":53,"value":2837},{"type":47,"tag":575,"props":2898,"children":2899},{"style":597},[2900],{"type":53,"value":794},{"type":47,"tag":575,"props":2902,"children":2903},{"style":613},[2904],{"type":53,"value":1231},{"type":47,"tag":575,"props":2906,"children":2907},{"style":613},[2908],{"type":53,"value":2726},{"type":47,"tag":575,"props":2910,"children":2911},{"style":2673},[2912],{"type":53,"value":2913}," fi\n",{"type":47,"tag":575,"props":2915,"children":2916},{"class":577,"line":650},[2917],{"type":47,"tag":575,"props":2918,"children":2919},{"style":2673},[2920],{"type":53,"value":2921},"done\n",{"type":47,"tag":56,"props":2923,"children":2924},{},[2925],{"type":53,"value":2926},"If nothing found: tell the user to start their dev server.",{"type":47,"tag":56,"props":2928,"children":2929},{},[2930,2935,2937,2942,2944,2950],{"type":47,"tag":62,"props":2931,"children":2932},{},[2933],{"type":53,"value":2934},"Verify it actually renders:",{"type":53,"value":2936},"\nAfter ",{"type":47,"tag":299,"props":2938,"children":2940},{"className":2939},[],[2941],{"type":53,"value":1496},{"type":53,"value":2943}," + ",{"type":47,"tag":299,"props":2945,"children":2947},{"className":2946},[],[2948],{"type":53,"value":2949},"browse snapshot",{"type":53,"value":2951},", check that the accessibility tree contains real page content (navigation, headings, interactive elements) — not just an error overlay or empty body. Next.js dev servers can return HTTP 200 while showing a full-screen build error dialog. If the snapshot is empty or dominated by an error dialog, the server is broken — fix the build before testing.",{"type":47,"tag":129,"props":2953,"children":2955},{"id":2954},"phase-4-generate-test-plan",[2956],{"type":53,"value":2957},"Phase 4: Generate test plan",{"type":47,"tag":56,"props":2959,"children":2960},{},[2961,2963,2968],{"type":53,"value":2962},"For each changed area, plan ",{"type":47,"tag":62,"props":2964,"children":2965},{},[2966],{"type":53,"value":2967},"both happy path AND adversarial tests",{"type":53,"value":1236},{"type":47,"tag":292,"props":2970,"children":2973},{"className":2971,"code":2972,"language":53},[295],"Test Plan (based on git diff)\n=============================\nChanged: src\u002Fcomponents\u002FSignupForm.tsx (added email validation)\n\n1. [happy] Valid email submits successfully\n   URL: http:\u002F\u002Flocalhost:3000\u002Fsignup\n   Steps: fill valid email → submit → verify success message appears\n\n2. [adversarial] Invalid email shows error\n   Steps: fill \"not-an-email\" → submit → verify error message appears\n\n3. [adversarial] Empty form submission\n   Steps: click submit without filling anything → verify error, no crash\n\n4. [adversarial] XSS in email field\n   Steps: fill \"\u003Cscript>alert(1)\u003C\u002Fscript>\" → submit → verify sanitized\u002Frejected\n\n5. [adversarial] Rapid double-submit\n   Steps: click submit twice quickly → verify no duplicate submission\n\n6. [adversarial] Keyboard-only flow\n   Steps: Tab to email → type → Tab to submit → Enter → verify success\n",[2974],{"type":47,"tag":299,"props":2975,"children":2976},{"__ignoreMap":301},[2977],{"type":53,"value":2972},{"type":47,"tag":129,"props":2979,"children":2981},{"id":2980},"phase-5-execute-tests",[2982],{"type":53,"value":2983},"Phase 5: Execute tests",{"type":47,"tag":292,"props":2985,"children":2987},{"className":567,"code":2986,"language":569,"meta":301,"style":301},"browse stop 2>\u002Fdev\u002Fnull\nmkdir -p .context\u002Fui-test-screenshots\n# localhost\u002Fdefault QA → clean, reproducible local run\nbrowse open http:\u002F\u002Flocalhost:3000 --local\n",[2988],{"type":47,"tag":299,"props":2989,"children":2990},{"__ignoreMap":301},[2991,3012,3027,3035],{"type":47,"tag":575,"props":2992,"children":2993},{"class":577,"line":578},[2994,2998,3003,3007],{"type":47,"tag":575,"props":2995,"children":2996},{"style":592},[2997],{"type":53,"value":314},{"type":47,"tag":575,"props":2999,"children":3000},{"style":597},[3001],{"type":53,"value":3002}," stop",{"type":47,"tag":575,"props":3004,"children":3005},{"style":613},[3006],{"type":53,"value":2805},{"type":47,"tag":575,"props":3008,"children":3009},{"style":597},[3010],{"type":53,"value":3011},"\u002Fdev\u002Fnull\n",{"type":47,"tag":575,"props":3013,"children":3014},{"class":577,"line":588},[3015,3019,3023],{"type":47,"tag":575,"props":3016,"children":3017},{"style":592},[3018],{"type":53,"value":746},{"type":47,"tag":575,"props":3020,"children":3021},{"style":597},[3022],{"type":53,"value":751},{"type":47,"tag":575,"props":3024,"children":3025},{"style":597},[3026],{"type":53,"value":756},{"type":47,"tag":575,"props":3028,"children":3029},{"class":577,"line":640},[3030],{"type":47,"tag":575,"props":3031,"children":3032},{"style":582},[3033],{"type":53,"value":3034},"# localhost\u002Fdefault QA → clean, reproducible local run\n",{"type":47,"tag":575,"props":3036,"children":3037},{"class":577,"line":650},[3038,3042,3046,3050],{"type":47,"tag":575,"props":3039,"children":3040},{"style":592},[3041],{"type":53,"value":314},{"type":47,"tag":575,"props":3043,"children":3044},{"style":597},[3045],{"type":53,"value":1523},{"type":47,"tag":575,"props":3047,"children":3048},{"style":597},[3049],{"type":53,"value":1528},{"type":47,"tag":575,"props":3051,"children":3052},{"style":597},[3053],{"type":53,"value":1533},{"type":47,"tag":56,"props":3055,"children":3056},{},[3057,3059,3064],{"type":53,"value":3058},"For each test, follow the ",{"type":47,"tag":62,"props":3060,"children":3061},{},[3062],{"type":53,"value":3063},"before\u002Fafter pattern",{"type":53,"value":1236},{"type":47,"tag":292,"props":3066,"children":3068},{"className":567,"code":3067,"language":569,"meta":301,"style":301},"# Navigate\nbrowse open http:\u002F\u002Flocalhost:3000\u002Fpath --local\nbrowse wait load\n\n# BEFORE snapshot\nbrowse snapshot\n# Note the current state: elements, refs, text\n\n# ACT\nbrowse click @0-ref\n# or: browse fill \"selector\" \"value\"\n# or: browse type \"text\"\n# or: browse press Enter\n\n# AFTER snapshot\nbrowse snapshot\n# Compare against BEFORE: what changed?\n\n# ASSERT with marker\n# STEP_PASS|step-id|evidence  OR  STEP_FAIL|step-id|expected → actual\n",[3069],{"type":47,"tag":299,"props":3070,"children":3071},{"__ignoreMap":301},[3072,3080,3100,3117,3124,3132,3143,3151,3158,3166,3182,3190,3198,3206,3213,3221,3232,3241,3249,3258],{"type":47,"tag":575,"props":3073,"children":3074},{"class":577,"line":578},[3075],{"type":47,"tag":575,"props":3076,"children":3077},{"style":582},[3078],{"type":53,"value":3079},"# Navigate\n",{"type":47,"tag":575,"props":3081,"children":3082},{"class":577,"line":588},[3083,3087,3091,3096],{"type":47,"tag":575,"props":3084,"children":3085},{"style":592},[3086],{"type":53,"value":314},{"type":47,"tag":575,"props":3088,"children":3089},{"style":597},[3090],{"type":53,"value":1523},{"type":47,"tag":575,"props":3092,"children":3093},{"style":597},[3094],{"type":53,"value":3095}," http:\u002F\u002Flocalhost:3000\u002Fpath",{"type":47,"tag":575,"props":3097,"children":3098},{"style":597},[3099],{"type":53,"value":1533},{"type":47,"tag":575,"props":3101,"children":3102},{"class":577,"line":640},[3103,3107,3112],{"type":47,"tag":575,"props":3104,"children":3105},{"style":592},[3106],{"type":53,"value":314},{"type":47,"tag":575,"props":3108,"children":3109},{"style":597},[3110],{"type":53,"value":3111}," wait",{"type":47,"tag":575,"props":3113,"children":3114},{"style":597},[3115],{"type":53,"value":3116}," load\n",{"type":47,"tag":575,"props":3118,"children":3119},{"class":577,"line":650},[3120],{"type":47,"tag":575,"props":3121,"children":3122},{"emptyLinePlaceholder":644},[3123],{"type":53,"value":647},{"type":47,"tag":575,"props":3125,"children":3126},{"class":577,"line":659},[3127],{"type":47,"tag":575,"props":3128,"children":3129},{"style":582},[3130],{"type":53,"value":3131},"# BEFORE snapshot\n",{"type":47,"tag":575,"props":3133,"children":3134},{"class":577,"line":672},[3135,3139],{"type":47,"tag":575,"props":3136,"children":3137},{"style":592},[3138],{"type":53,"value":314},{"type":47,"tag":575,"props":3140,"children":3141},{"style":597},[3142],{"type":53,"value":955},{"type":47,"tag":575,"props":3144,"children":3145},{"class":577,"line":681},[3146],{"type":47,"tag":575,"props":3147,"children":3148},{"style":582},[3149],{"type":53,"value":3150},"# Note the current state: elements, refs, text\n",{"type":47,"tag":575,"props":3152,"children":3153},{"class":577,"line":1005},[3154],{"type":47,"tag":575,"props":3155,"children":3156},{"emptyLinePlaceholder":644},[3157],{"type":53,"value":647},{"type":47,"tag":575,"props":3159,"children":3160},{"class":577,"line":1014},[3161],{"type":47,"tag":575,"props":3162,"children":3163},{"style":582},[3164],{"type":53,"value":3165},"# ACT\n",{"type":47,"tag":575,"props":3167,"children":3168},{"class":577,"line":1026},[3169,3173,3177],{"type":47,"tag":575,"props":3170,"children":3171},{"style":592},[3172],{"type":53,"value":314},{"type":47,"tag":575,"props":3174,"children":3175},{"style":597},[3176],{"type":53,"value":990},{"type":47,"tag":575,"props":3178,"children":3179},{"style":597},[3180],{"type":53,"value":3181}," @0-ref\n",{"type":47,"tag":575,"props":3183,"children":3184},{"class":577,"line":1035},[3185],{"type":47,"tag":575,"props":3186,"children":3187},{"style":582},[3188],{"type":53,"value":3189},"# or: browse fill \"selector\" \"value\"\n",{"type":47,"tag":575,"props":3191,"children":3192},{"class":577,"line":1043},[3193],{"type":47,"tag":575,"props":3194,"children":3195},{"style":582},[3196],{"type":53,"value":3197},"# or: browse type \"text\"\n",{"type":47,"tag":575,"props":3199,"children":3200},{"class":577,"line":1052},[3201],{"type":47,"tag":575,"props":3202,"children":3203},{"style":582},[3204],{"type":53,"value":3205},"# or: browse press Enter\n",{"type":47,"tag":575,"props":3207,"children":3208},{"class":577,"line":1061},[3209],{"type":47,"tag":575,"props":3210,"children":3211},{"emptyLinePlaceholder":644},[3212],{"type":53,"value":647},{"type":47,"tag":575,"props":3214,"children":3215},{"class":577,"line":1070},[3216],{"type":47,"tag":575,"props":3217,"children":3218},{"style":582},[3219],{"type":53,"value":3220},"# AFTER snapshot\n",{"type":47,"tag":575,"props":3222,"children":3223},{"class":577,"line":1091},[3224,3228],{"type":47,"tag":575,"props":3225,"children":3226},{"style":592},[3227],{"type":53,"value":314},{"type":47,"tag":575,"props":3229,"children":3230},{"style":597},[3231],{"type":53,"value":955},{"type":47,"tag":575,"props":3233,"children":3235},{"class":577,"line":3234},17,[3236],{"type":47,"tag":575,"props":3237,"children":3238},{"style":582},[3239],{"type":53,"value":3240},"# Compare against BEFORE: what changed?\n",{"type":47,"tag":575,"props":3242,"children":3244},{"class":577,"line":3243},18,[3245],{"type":47,"tag":575,"props":3246,"children":3247},{"emptyLinePlaceholder":644},[3248],{"type":53,"value":647},{"type":47,"tag":575,"props":3250,"children":3252},{"class":577,"line":3251},19,[3253],{"type":47,"tag":575,"props":3254,"children":3255},{"style":582},[3256],{"type":53,"value":3257},"# ASSERT with marker\n",{"type":47,"tag":575,"props":3259,"children":3261},{"class":577,"line":3260},20,[3262],{"type":47,"tag":575,"props":3263,"children":3264},{"style":582},[3265],{"type":53,"value":3266},"# STEP_PASS|step-id|evidence  OR  STEP_FAIL|step-id|expected → actual\n",{"type":47,"tag":129,"props":3268,"children":3270},{"id":3269},"phase-6-report-results",[3271],{"type":53,"value":3272},"Phase 6: Report results",{"type":47,"tag":292,"props":3274,"children":3277},{"className":3275,"code":3276,"language":53},[295],"## UI Test Results\n\n### STEP_PASS|valid-email-submit|status \"Thanks!\" appeared at @0-42 after submit\n- URL: http:\u002F\u002Flocalhost:3000\u002Fsignup\n- Before: form with email input @0-3, submit button @0-7\n- Action: filled \"user@test.com\", clicked @0-7\n- After: form replaced by status element with \"Thanks! We'll be in touch.\"\n\n### STEP_FAIL|double-submit|expected single submission → form submitted twice|.context\u002Fui-test-screenshots\u002Fdouble-submit.png\n- URL: http:\u002F\u002Flocalhost:3000\u002Fsignup\n- Before: form with submit button @0-7\n- Action: clicked @0-7 twice rapidly\n- After: two success toasts appeared, suggesting duplicate submission\n- Screenshot: .context\u002Fui-test-screenshots\u002Fdouble-submit.png\n- Suggestion: disable submit button after first click, or debounce the handler\n\n---\n**Summary: 4\u002F6 passed, 2 failed**\nFailed: double-submit, xss-sanitization\n\nScreenshots saved to `.context\u002Fui-test-screenshots\u002F` — open any failed step's screenshot to see the broken state.\n",[3278],{"type":47,"tag":299,"props":3279,"children":3280},{"__ignoreMap":301},[3281],{"type":53,"value":3276},{"type":47,"tag":56,"props":3283,"children":3284},{},[3285,3287,3293],{"type":53,"value":3286},"Always ",{"type":47,"tag":299,"props":3288,"children":3290},{"className":3289},[],[3291],{"type":53,"value":3292},"browse stop",{"type":53,"value":3294}," when done.",{"type":47,"tag":129,"props":3296,"children":3298},{"id":3297},"phase-7-generate-html-report",[3299],{"type":53,"value":3300},"Phase 7: Generate HTML report",{"type":47,"tag":56,"props":3302,"children":3303},{},[3304],{"type":53,"value":3305},"After producing the text report, generate a standalone HTML report that a reviewer can open in a browser. The report embeds screenshots inline (base64) so it works as a single file — no external dependencies.",{"type":47,"tag":56,"props":3307,"children":3308},{},[3309,3314],{"type":47,"tag":62,"props":3310,"children":3311},{},[3312],{"type":53,"value":3313},"Why:",{"type":53,"value":3315}," Text reports are good for the agent conversation, but reviewers (PMs, designers, other engineers) want a visual artifact they can open, scan, and share. Screenshots inline make failures immediately obvious.",{"type":47,"tag":3317,"props":3318,"children":3320},"h4",{"id":3319},"how-to-generate",[3321],{"type":53,"value":3322},"How to generate",{"type":47,"tag":851,"props":3324,"children":3325},{},[3326,3337],{"type":47,"tag":79,"props":3327,"children":3328},{},[3329,3331],{"type":53,"value":3330},"Read the HTML template at ",{"type":47,"tag":3332,"props":3333,"children":3335},"a",{"href":3334},"references\u002Freport-template.html",[3336],{"type":53,"value":3334},{"type":47,"tag":79,"props":3338,"children":3339},{},[3340],{"type":53,"value":3341},"Build the report by replacing the template placeholders with actual test data:",{"type":47,"tag":1358,"props":3343,"children":3344},{},[3345,3361],{"type":47,"tag":1362,"props":3346,"children":3347},{},[3348],{"type":47,"tag":1366,"props":3349,"children":3350},{},[3351,3356],{"type":47,"tag":1370,"props":3352,"children":3353},{},[3354],{"type":53,"value":3355},"Placeholder",{"type":47,"tag":1370,"props":3357,"children":3358},{},[3359],{"type":53,"value":3360},"Value",{"type":47,"tag":1391,"props":3362,"children":3363},{},[3364,3389,3436,3453,3470,3487,3504,3521,3538,3577,3594],{"type":47,"tag":1366,"props":3365,"children":3366},{},[3367,3376],{"type":47,"tag":1398,"props":3368,"children":3369},{},[3370],{"type":47,"tag":299,"props":3371,"children":3373},{"className":3372},[],[3374],{"type":53,"value":3375},"{{TITLE}}",{"type":47,"tag":1398,"props":3377,"children":3378},{},[3379,3381,3387],{"type":53,"value":3380},"Report title for ",{"type":47,"tag":299,"props":3382,"children":3384},{"className":3383},[],[3385],{"type":53,"value":3386},"\u003Ctitle>",{"type":53,"value":3388}," tag (e.g., \"UI Test: PR #1234 — OAuth Settings\")",{"type":47,"tag":1366,"props":3390,"children":3391},{},[3392,3401],{"type":47,"tag":1398,"props":3393,"children":3394},{},[3395],{"type":47,"tag":299,"props":3396,"children":3398},{"className":3397},[],[3399],{"type":53,"value":3400},"{{TITLE_HTML}}",{"type":47,"tag":1398,"props":3402,"children":3403},{},[3404,3406,3412,3414,3420,3422,3428,3430,3435],{"type":53,"value":3405},"Report title for the visible ",{"type":47,"tag":299,"props":3407,"children":3409},{"className":3408},[],[3410],{"type":53,"value":3411},"\u003Ch1>",{"type":53,"value":3413},". If a PR URL is available, wrap the PR reference in an ",{"type":47,"tag":299,"props":3415,"children":3417},{"className":3416},[],[3418],{"type":53,"value":3419},"\u003Ca>",{"type":53,"value":3421}," tag so it's clickable (e.g., ",{"type":47,"tag":299,"props":3423,"children":3425},{"className":3424},[],[3426],{"type":53,"value":3427},"UI Test: \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Forg\u002Frepo\u002Fpull\u002F1234\">PR #1234\u003C\u002Fa> — OAuth Settings",{"type":53,"value":3429},"). If no URL, use plain text same as ",{"type":47,"tag":299,"props":3431,"children":3433},{"className":3432},[],[3434],{"type":53,"value":3375},{"type":53,"value":1498},{"type":47,"tag":1366,"props":3437,"children":3438},{},[3439,3448],{"type":47,"tag":1398,"props":3440,"children":3441},{},[3442],{"type":47,"tag":299,"props":3443,"children":3445},{"className":3444},[],[3446],{"type":53,"value":3447},"{{META}}",{"type":47,"tag":1398,"props":3449,"children":3450},{},[3451],{"type":53,"value":3452},"One-line context: date, app URL, user, branch",{"type":47,"tag":1366,"props":3454,"children":3455},{},[3456,3465],{"type":47,"tag":1398,"props":3457,"children":3458},{},[3459],{"type":47,"tag":299,"props":3460,"children":3462},{"className":3461},[],[3463],{"type":53,"value":3464},"{{TOTAL_TESTS}}",{"type":47,"tag":1398,"props":3466,"children":3467},{},[3468],{"type":53,"value":3469},"Total STEP_PASS + STEP_FAIL count",{"type":47,"tag":1366,"props":3471,"children":3472},{},[3473,3482],{"type":47,"tag":1398,"props":3474,"children":3475},{},[3476],{"type":47,"tag":299,"props":3477,"children":3479},{"className":3478},[],[3480],{"type":53,"value":3481},"{{AGENT_COUNT}}",{"type":47,"tag":1398,"props":3483,"children":3484},{},[3485],{"type":53,"value":3486},"Number of sub-agents that ran",{"type":47,"tag":1366,"props":3488,"children":3489},{},[3490,3499],{"type":47,"tag":1398,"props":3491,"children":3492},{},[3493],{"type":47,"tag":299,"props":3494,"children":3496},{"className":3495},[],[3497],{"type":53,"value":3498},"{{PASS_COUNT}}",{"type":47,"tag":1398,"props":3500,"children":3501},{},[3502],{"type":53,"value":3503},"Number of STEP_PASS",{"type":47,"tag":1366,"props":3505,"children":3506},{},[3507,3516],{"type":47,"tag":1398,"props":3508,"children":3509},{},[3510],{"type":47,"tag":299,"props":3511,"children":3513},{"className":3512},[],[3514],{"type":53,"value":3515},"{{FAIL_COUNT}}",{"type":47,"tag":1398,"props":3517,"children":3518},{},[3519],{"type":53,"value":3520},"Number of STEP_FAIL",{"type":47,"tag":1366,"props":3522,"children":3523},{},[3524,3533],{"type":47,"tag":1398,"props":3525,"children":3526},{},[3527],{"type":47,"tag":299,"props":3528,"children":3530},{"className":3529},[],[3531],{"type":53,"value":3532},"{{PASS_RATE}}",{"type":47,"tag":1398,"props":3534,"children":3535},{},[3536],{"type":53,"value":3537},"Integer percentage (e.g., \"92\")",{"type":47,"tag":1366,"props":3539,"children":3540},{},[3541,3550],{"type":47,"tag":1398,"props":3542,"children":3543},{},[3544],{"type":47,"tag":299,"props":3545,"children":3547},{"className":3546},[],[3548],{"type":53,"value":3549},"{{RATE_CLASS}}",{"type":47,"tag":1398,"props":3551,"children":3552},{},[3553,3559,3561,3567,3569,3575],{"type":47,"tag":299,"props":3554,"children":3556},{"className":3555},[],[3557],{"type":53,"value":3558},"good",{"type":53,"value":3560}," (≥90%), ",{"type":47,"tag":299,"props":3562,"children":3564},{"className":3563},[],[3565],{"type":53,"value":3566},"warn",{"type":53,"value":3568}," (70–89%), ",{"type":47,"tag":299,"props":3570,"children":3572},{"className":3571},[],[3573],{"type":53,"value":3574},"bad",{"type":53,"value":3576}," (\u003C70%)",{"type":47,"tag":1366,"props":3578,"children":3579},{},[3580,3589],{"type":47,"tag":1398,"props":3581,"children":3582},{},[3583],{"type":47,"tag":299,"props":3584,"children":3586},{"className":3585},[],[3587],{"type":53,"value":3588},"{{FAILURES_SECTION}}",{"type":47,"tag":1398,"props":3590,"children":3591},{},[3592],{"type":53,"value":3593},"HTML for failed test cards (see below)",{"type":47,"tag":1366,"props":3595,"children":3596},{},[3597,3606],{"type":47,"tag":1398,"props":3598,"children":3599},{},[3600],{"type":47,"tag":299,"props":3601,"children":3603},{"className":3602},[],[3604],{"type":53,"value":3605},"{{PASSES_SECTION}}",{"type":47,"tag":1398,"props":3607,"children":3608},{},[3609],{"type":53,"value":3610},"HTML for passed test cards (see below)",{"type":47,"tag":851,"props":3612,"children":3613},{"start":640},[3614],{"type":47,"tag":79,"props":3615,"children":3616},{},[3617,3619,3625,3627,3632],{"type":53,"value":3618},"For each test result, generate a ",{"type":47,"tag":299,"props":3620,"children":3622},{"className":3621},[],[3623],{"type":53,"value":3624},"\u003Cdetails>",{"type":53,"value":3626}," card. Failed tests should be ",{"type":47,"tag":62,"props":3628,"children":3629},{},[3630],{"type":53,"value":3631},"open by default",{"type":53,"value":3633}," so reviewers see them immediately:",{"type":47,"tag":292,"props":3635,"children":3639},{"className":3636,"code":3637,"language":3638,"meta":301,"style":301},"language-html shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","\u003C!-- Failed test card (open by default) -->\n\u003Cdiv class=\"section\">\n  \u003Ch2>Failures \u003Cspan class=\"count\">{{FAIL_COUNT}}\u003C\u002Fspan>\u003C\u002Fh2>\n  \u003Cdetails class=\"test-card fail\" open>\n    \u003Csummary>\n      \u003Cspan class=\"badge fail\">FAIL\u003C\u002Fspan>\n      \u003Cspan class=\"step-id\">step-id-here\u003C\u002Fspan>\n      \u003Cspan class=\"evidence\">expected → actual\u003C\u002Fspan>\n    \u003C\u002Fsummary>\n    \u003Cdiv class=\"body\">\n      \u003Cdl>\n        \u003Cdt>URL\u003C\u002Fdt>\u003Cdd>http:\u002F\u002Flocalhost:3000\u002Fpath\u003C\u002Fdd>\n        \u003Cdt>Action\u003C\u002Fdt>\u003Cdd>What was done\u003C\u002Fdd>\n        \u003Cdt>Expected\u003C\u002Fdt>\u003Cdd>What should have happened\u003C\u002Fdd>\n        \u003Cdt>Actual\u003C\u002Fdt>\u003Cdd>What happened instead\u003C\u002Fdd>\n      \u003C\u002Fdl>\n      \u003Cdiv class=\"suggestion\">Fix: description of suggested fix\u003C\u002Fdiv>\n      \u003Cdiv class=\"screenshot\">\n        \u003Cimg src=\"data:image\u002Fpng;base64,...\" alt=\"Screenshot of failure\">\n        \u003Cdiv class=\"caption\">step-id.png — captured at moment of failure\u003C\u002Fdiv>\n      \u003C\u002Fdiv>\n    \u003C\u002Fdiv>\n  \u003C\u002Fdetails>\n\u003C\u002Fdiv>\n\n\u003C!-- Passed test card (collapsed by default) -->\n\u003Cdiv class=\"section\">\n  \u003Ch2>Passed \u003Cspan class=\"count\">{{PASS_COUNT}}\u003C\u002Fspan>\u003C\u002Fh2>\n  \u003Cdetails class=\"test-card pass\">\n    \u003Csummary>\n      \u003Cspan class=\"badge pass\">PASS\u003C\u002Fspan>\n      \u003Cspan class=\"step-id\">step-id-here\u003C\u002Fspan>\n      \u003Cspan class=\"evidence\">evidence summary\u003C\u002Fspan>\n    \u003C\u002Fsummary>\n    \u003Cdiv class=\"body\">\n      \u003Cdl>\n        \u003Cdt>URL\u003C\u002Fdt>\u003Cdd>http:\u002F\u002Flocalhost:3000\u002Fpath\u003C\u002Fdd>\n        \u003Cdt>Evidence\u003C\u002Fdt>\u003Cdd>What was observed\u003C\u002Fdd>\n      \u003C\u002Fdl>\n    \u003C\u002Fdiv>\n  \u003C\u002Fdetails>\n\u003C\u002Fdiv>\n","html",[3640],{"type":47,"tag":299,"props":3641,"children":3642},{"__ignoreMap":301},[3643,3651,3690,3770,3811,3828,3882,3934,3985,4001,4037,4053,4114,4171,4228,4285,4301,4354,4390,4450,4503,4519,4535,4552,4568,4576,4585,4621,4698,4735,4751,4805,4857,4910,4926,4962,4978,5034,5092,5108,5124,5140],{"type":47,"tag":575,"props":3644,"children":3645},{"class":577,"line":578},[3646],{"type":47,"tag":575,"props":3647,"children":3648},{"style":582},[3649],{"type":53,"value":3650},"\u003C!-- Failed test card (open by default) -->\n",{"type":47,"tag":575,"props":3652,"children":3653},{"class":577,"line":588},[3654,3658,3664,3669,3673,3677,3682,3686],{"type":47,"tag":575,"props":3655,"children":3656},{"style":613},[3657],{"type":53,"value":616},{"type":47,"tag":575,"props":3659,"children":3661},{"style":3660},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[3662],{"type":53,"value":3663},"div",{"type":47,"tag":575,"props":3665,"children":3666},{"style":1223},[3667],{"type":53,"value":3668}," class",{"type":47,"tag":575,"props":3670,"children":3671},{"style":613},[3672],{"type":53,"value":1654},{"type":47,"tag":575,"props":3674,"children":3675},{"style":613},[3676],{"type":53,"value":1231},{"type":47,"tag":575,"props":3678,"children":3679},{"style":597},[3680],{"type":53,"value":3681},"section",{"type":47,"tag":575,"props":3683,"children":3684},{"style":613},[3685],{"type":53,"value":1231},{"type":47,"tag":575,"props":3687,"children":3688},{"style":613},[3689],{"type":53,"value":2615},{"type":47,"tag":575,"props":3691,"children":3692},{"class":577,"line":640},[3693,3698,3702,3706,3711,3715,3719,3723,3727,3731,3736,3740,3744,3748,3753,3757,3762,3766],{"type":47,"tag":575,"props":3694,"children":3695},{"style":613},[3696],{"type":53,"value":3697},"  \u003C",{"type":47,"tag":575,"props":3699,"children":3700},{"style":3660},[3701],{"type":53,"value":110},{"type":47,"tag":575,"props":3703,"children":3704},{"style":613},[3705],{"type":53,"value":632},{"type":47,"tag":575,"props":3707,"children":3708},{"style":624},[3709],{"type":53,"value":3710},"Failures ",{"type":47,"tag":575,"props":3712,"children":3713},{"style":613},[3714],{"type":53,"value":616},{"type":47,"tag":575,"props":3716,"children":3717},{"style":3660},[3718],{"type":53,"value":575},{"type":47,"tag":575,"props":3720,"children":3721},{"style":1223},[3722],{"type":53,"value":3668},{"type":47,"tag":575,"props":3724,"children":3725},{"style":613},[3726],{"type":53,"value":1654},{"type":47,"tag":575,"props":3728,"children":3729},{"style":613},[3730],{"type":53,"value":1231},{"type":47,"tag":575,"props":3732,"children":3733},{"style":597},[3734],{"type":53,"value":3735},"count",{"type":47,"tag":575,"props":3737,"children":3738},{"style":613},[3739],{"type":53,"value":1231},{"type":47,"tag":575,"props":3741,"children":3742},{"style":613},[3743],{"type":53,"value":632},{"type":47,"tag":575,"props":3745,"children":3746},{"style":624},[3747],{"type":53,"value":3515},{"type":47,"tag":575,"props":3749,"children":3750},{"style":613},[3751],{"type":53,"value":3752},"\u003C\u002F",{"type":47,"tag":575,"props":3754,"children":3755},{"style":3660},[3756],{"type":53,"value":575},{"type":47,"tag":575,"props":3758,"children":3759},{"style":613},[3760],{"type":53,"value":3761},">\u003C\u002F",{"type":47,"tag":575,"props":3763,"children":3764},{"style":3660},[3765],{"type":53,"value":110},{"type":47,"tag":575,"props":3767,"children":3768},{"style":613},[3769],{"type":53,"value":2615},{"type":47,"tag":575,"props":3771,"children":3772},{"class":577,"line":650},[3773,3777,3782,3786,3790,3794,3799,3803,3807],{"type":47,"tag":575,"props":3774,"children":3775},{"style":613},[3776],{"type":53,"value":3697},{"type":47,"tag":575,"props":3778,"children":3779},{"style":3660},[3780],{"type":53,"value":3781},"details",{"type":47,"tag":575,"props":3783,"children":3784},{"style":1223},[3785],{"type":53,"value":3668},{"type":47,"tag":575,"props":3787,"children":3788},{"style":613},[3789],{"type":53,"value":1654},{"type":47,"tag":575,"props":3791,"children":3792},{"style":613},[3793],{"type":53,"value":1231},{"type":47,"tag":575,"props":3795,"children":3796},{"style":597},[3797],{"type":53,"value":3798},"test-card fail",{"type":47,"tag":575,"props":3800,"children":3801},{"style":613},[3802],{"type":53,"value":1231},{"type":47,"tag":575,"props":3804,"children":3805},{"style":1223},[3806],{"type":53,"value":1523},{"type":47,"tag":575,"props":3808,"children":3809},{"style":613},[3810],{"type":53,"value":2615},{"type":47,"tag":575,"props":3812,"children":3813},{"class":577,"line":659},[3814,3819,3824],{"type":47,"tag":575,"props":3815,"children":3816},{"style":613},[3817],{"type":53,"value":3818},"    \u003C",{"type":47,"tag":575,"props":3820,"children":3821},{"style":3660},[3822],{"type":53,"value":3823},"summary",{"type":47,"tag":575,"props":3825,"children":3826},{"style":613},[3827],{"type":53,"value":2615},{"type":47,"tag":575,"props":3829,"children":3830},{"class":577,"line":672},[3831,3836,3840,3844,3848,3852,3857,3861,3865,3870,3874,3878],{"type":47,"tag":575,"props":3832,"children":3833},{"style":613},[3834],{"type":53,"value":3835},"      \u003C",{"type":47,"tag":575,"props":3837,"children":3838},{"style":3660},[3839],{"type":53,"value":575},{"type":47,"tag":575,"props":3841,"children":3842},{"style":1223},[3843],{"type":53,"value":3668},{"type":47,"tag":575,"props":3845,"children":3846},{"style":613},[3847],{"type":53,"value":1654},{"type":47,"tag":575,"props":3849,"children":3850},{"style":613},[3851],{"type":53,"value":1231},{"type":47,"tag":575,"props":3853,"children":3854},{"style":597},[3855],{"type":53,"value":3856},"badge fail",{"type":47,"tag":575,"props":3858,"children":3859},{"style":613},[3860],{"type":53,"value":1231},{"type":47,"tag":575,"props":3862,"children":3863},{"style":613},[3864],{"type":53,"value":632},{"type":47,"tag":575,"props":3866,"children":3867},{"style":624},[3868],{"type":53,"value":3869},"FAIL",{"type":47,"tag":575,"props":3871,"children":3872},{"style":613},[3873],{"type":53,"value":3752},{"type":47,"tag":575,"props":3875,"children":3876},{"style":3660},[3877],{"type":53,"value":575},{"type":47,"tag":575,"props":3879,"children":3880},{"style":613},[3881],{"type":53,"value":2615},{"type":47,"tag":575,"props":3883,"children":3884},{"class":577,"line":681},[3885,3889,3893,3897,3901,3905,3909,3913,3917,3922,3926,3930],{"type":47,"tag":575,"props":3886,"children":3887},{"style":613},[3888],{"type":53,"value":3835},{"type":47,"tag":575,"props":3890,"children":3891},{"style":3660},[3892],{"type":53,"value":575},{"type":47,"tag":575,"props":3894,"children":3895},{"style":1223},[3896],{"type":53,"value":3668},{"type":47,"tag":575,"props":3898,"children":3899},{"style":613},[3900],{"type":53,"value":1654},{"type":47,"tag":575,"props":3902,"children":3903},{"style":613},[3904],{"type":53,"value":1231},{"type":47,"tag":575,"props":3906,"children":3907},{"style":597},[3908],{"type":53,"value":487},{"type":47,"tag":575,"props":3910,"children":3911},{"style":613},[3912],{"type":53,"value":1231},{"type":47,"tag":575,"props":3914,"children":3915},{"style":613},[3916],{"type":53,"value":632},{"type":47,"tag":575,"props":3918,"children":3919},{"style":624},[3920],{"type":53,"value":3921},"step-id-here",{"type":47,"tag":575,"props":3923,"children":3924},{"style":613},[3925],{"type":53,"value":3752},{"type":47,"tag":575,"props":3927,"children":3928},{"style":3660},[3929],{"type":53,"value":575},{"type":47,"tag":575,"props":3931,"children":3932},{"style":613},[3933],{"type":53,"value":2615},{"type":47,"tag":575,"props":3935,"children":3936},{"class":577,"line":1005},[3937,3941,3945,3949,3953,3957,3961,3965,3969,3973,3977,3981],{"type":47,"tag":575,"props":3938,"children":3939},{"style":613},[3940],{"type":53,"value":3835},{"type":47,"tag":575,"props":3942,"children":3943},{"style":3660},[3944],{"type":53,"value":575},{"type":47,"tag":575,"props":3946,"children":3947},{"style":1223},[3948],{"type":53,"value":3668},{"type":47,"tag":575,"props":3950,"children":3951},{"style":613},[3952],{"type":53,"value":1654},{"type":47,"tag":575,"props":3954,"children":3955},{"style":613},[3956],{"type":53,"value":1231},{"type":47,"tag":575,"props":3958,"children":3959},{"style":597},[3960],{"type":53,"value":519},{"type":47,"tag":575,"props":3962,"children":3963},{"style":613},[3964],{"type":53,"value":1231},{"type":47,"tag":575,"props":3966,"children":3967},{"style":613},[3968],{"type":53,"value":632},{"type":47,"tag":575,"props":3970,"children":3971},{"style":624},[3972],{"type":53,"value":530},{"type":47,"tag":575,"props":3974,"children":3975},{"style":613},[3976],{"type":53,"value":3752},{"type":47,"tag":575,"props":3978,"children":3979},{"style":3660},[3980],{"type":53,"value":575},{"type":47,"tag":575,"props":3982,"children":3983},{"style":613},[3984],{"type":53,"value":2615},{"type":47,"tag":575,"props":3986,"children":3987},{"class":577,"line":1014},[3988,3993,3997],{"type":47,"tag":575,"props":3989,"children":3990},{"style":613},[3991],{"type":53,"value":3992},"    \u003C\u002F",{"type":47,"tag":575,"props":3994,"children":3995},{"style":3660},[3996],{"type":53,"value":3823},{"type":47,"tag":575,"props":3998,"children":3999},{"style":613},[4000],{"type":53,"value":2615},{"type":47,"tag":575,"props":4002,"children":4003},{"class":577,"line":1026},[4004,4008,4012,4016,4020,4024,4029,4033],{"type":47,"tag":575,"props":4005,"children":4006},{"style":613},[4007],{"type":53,"value":3818},{"type":47,"tag":575,"props":4009,"children":4010},{"style":3660},[4011],{"type":53,"value":3663},{"type":47,"tag":575,"props":4013,"children":4014},{"style":1223},[4015],{"type":53,"value":3668},{"type":47,"tag":575,"props":4017,"children":4018},{"style":613},[4019],{"type":53,"value":1654},{"type":47,"tag":575,"props":4021,"children":4022},{"style":613},[4023],{"type":53,"value":1231},{"type":47,"tag":575,"props":4025,"children":4026},{"style":597},[4027],{"type":53,"value":4028},"body",{"type":47,"tag":575,"props":4030,"children":4031},{"style":613},[4032],{"type":53,"value":1231},{"type":47,"tag":575,"props":4034,"children":4035},{"style":613},[4036],{"type":53,"value":2615},{"type":47,"tag":575,"props":4038,"children":4039},{"class":577,"line":1035},[4040,4044,4049],{"type":47,"tag":575,"props":4041,"children":4042},{"style":613},[4043],{"type":53,"value":3835},{"type":47,"tag":575,"props":4045,"children":4046},{"style":3660},[4047],{"type":53,"value":4048},"dl",{"type":47,"tag":575,"props":4050,"children":4051},{"style":613},[4052],{"type":53,"value":2615},{"type":47,"tag":575,"props":4054,"children":4055},{"class":577,"line":1043},[4056,4061,4066,4070,4075,4079,4083,4088,4093,4097,4102,4106,4110],{"type":47,"tag":575,"props":4057,"children":4058},{"style":613},[4059],{"type":53,"value":4060},"        \u003C",{"type":47,"tag":575,"props":4062,"children":4063},{"style":3660},[4064],{"type":53,"value":4065},"dt",{"type":47,"tag":575,"props":4067,"children":4068},{"style":613},[4069],{"type":53,"value":632},{"type":47,"tag":575,"props":4071,"children":4072},{"style":624},[4073],{"type":53,"value":4074},"URL",{"type":47,"tag":575,"props":4076,"children":4077},{"style":613},[4078],{"type":53,"value":3752},{"type":47,"tag":575,"props":4080,"children":4081},{"style":3660},[4082],{"type":53,"value":4065},{"type":47,"tag":575,"props":4084,"children":4085},{"style":613},[4086],{"type":53,"value":4087},">\u003C",{"type":47,"tag":575,"props":4089,"children":4090},{"style":3660},[4091],{"type":53,"value":4092},"dd",{"type":47,"tag":575,"props":4094,"children":4095},{"style":613},[4096],{"type":53,"value":632},{"type":47,"tag":575,"props":4098,"children":4099},{"style":624},[4100],{"type":53,"value":4101},"http:\u002F\u002Flocalhost:3000\u002Fpath",{"type":47,"tag":575,"props":4103,"children":4104},{"style":613},[4105],{"type":53,"value":3752},{"type":47,"tag":575,"props":4107,"children":4108},{"style":3660},[4109],{"type":53,"value":4092},{"type":47,"tag":575,"props":4111,"children":4112},{"style":613},[4113],{"type":53,"value":2615},{"type":47,"tag":575,"props":4115,"children":4116},{"class":577,"line":1052},[4117,4121,4125,4129,4134,4138,4142,4146,4150,4154,4159,4163,4167],{"type":47,"tag":575,"props":4118,"children":4119},{"style":613},[4120],{"type":53,"value":4060},{"type":47,"tag":575,"props":4122,"children":4123},{"style":3660},[4124],{"type":53,"value":4065},{"type":47,"tag":575,"props":4126,"children":4127},{"style":613},[4128],{"type":53,"value":632},{"type":47,"tag":575,"props":4130,"children":4131},{"style":624},[4132],{"type":53,"value":4133},"Action",{"type":47,"tag":575,"props":4135,"children":4136},{"style":613},[4137],{"type":53,"value":3752},{"type":47,"tag":575,"props":4139,"children":4140},{"style":3660},[4141],{"type":53,"value":4065},{"type":47,"tag":575,"props":4143,"children":4144},{"style":613},[4145],{"type":53,"value":4087},{"type":47,"tag":575,"props":4147,"children":4148},{"style":3660},[4149],{"type":53,"value":4092},{"type":47,"tag":575,"props":4151,"children":4152},{"style":613},[4153],{"type":53,"value":632},{"type":47,"tag":575,"props":4155,"children":4156},{"style":624},[4157],{"type":53,"value":4158},"What was done",{"type":47,"tag":575,"props":4160,"children":4161},{"style":613},[4162],{"type":53,"value":3752},{"type":47,"tag":575,"props":4164,"children":4165},{"style":3660},[4166],{"type":53,"value":4092},{"type":47,"tag":575,"props":4168,"children":4169},{"style":613},[4170],{"type":53,"value":2615},{"type":47,"tag":575,"props":4172,"children":4173},{"class":577,"line":1061},[4174,4178,4182,4186,4191,4195,4199,4203,4207,4211,4216,4220,4224],{"type":47,"tag":575,"props":4175,"children":4176},{"style":613},[4177],{"type":53,"value":4060},{"type":47,"tag":575,"props":4179,"children":4180},{"style":3660},[4181],{"type":53,"value":4065},{"type":47,"tag":575,"props":4183,"children":4184},{"style":613},[4185],{"type":53,"value":632},{"type":47,"tag":575,"props":4187,"children":4188},{"style":624},[4189],{"type":53,"value":4190},"Expected",{"type":47,"tag":575,"props":4192,"children":4193},{"style":613},[4194],{"type":53,"value":3752},{"type":47,"tag":575,"props":4196,"children":4197},{"style":3660},[4198],{"type":53,"value":4065},{"type":47,"tag":575,"props":4200,"children":4201},{"style":613},[4202],{"type":53,"value":4087},{"type":47,"tag":575,"props":4204,"children":4205},{"style":3660},[4206],{"type":53,"value":4092},{"type":47,"tag":575,"props":4208,"children":4209},{"style":613},[4210],{"type":53,"value":632},{"type":47,"tag":575,"props":4212,"children":4213},{"style":624},[4214],{"type":53,"value":4215},"What should have happened",{"type":47,"tag":575,"props":4217,"children":4218},{"style":613},[4219],{"type":53,"value":3752},{"type":47,"tag":575,"props":4221,"children":4222},{"style":3660},[4223],{"type":53,"value":4092},{"type":47,"tag":575,"props":4225,"children":4226},{"style":613},[4227],{"type":53,"value":2615},{"type":47,"tag":575,"props":4229,"children":4230},{"class":577,"line":1070},[4231,4235,4239,4243,4248,4252,4256,4260,4264,4268,4273,4277,4281],{"type":47,"tag":575,"props":4232,"children":4233},{"style":613},[4234],{"type":53,"value":4060},{"type":47,"tag":575,"props":4236,"children":4237},{"style":3660},[4238],{"type":53,"value":4065},{"type":47,"tag":575,"props":4240,"children":4241},{"style":613},[4242],{"type":53,"value":632},{"type":47,"tag":575,"props":4244,"children":4245},{"style":624},[4246],{"type":53,"value":4247},"Actual",{"type":47,"tag":575,"props":4249,"children":4250},{"style":613},[4251],{"type":53,"value":3752},{"type":47,"tag":575,"props":4253,"children":4254},{"style":3660},[4255],{"type":53,"value":4065},{"type":47,"tag":575,"props":4257,"children":4258},{"style":613},[4259],{"type":53,"value":4087},{"type":47,"tag":575,"props":4261,"children":4262},{"style":3660},[4263],{"type":53,"value":4092},{"type":47,"tag":575,"props":4265,"children":4266},{"style":613},[4267],{"type":53,"value":632},{"type":47,"tag":575,"props":4269,"children":4270},{"style":624},[4271],{"type":53,"value":4272},"What happened instead",{"type":47,"tag":575,"props":4274,"children":4275},{"style":613},[4276],{"type":53,"value":3752},{"type":47,"tag":575,"props":4278,"children":4279},{"style":3660},[4280],{"type":53,"value":4092},{"type":47,"tag":575,"props":4282,"children":4283},{"style":613},[4284],{"type":53,"value":2615},{"type":47,"tag":575,"props":4286,"children":4287},{"class":577,"line":1091},[4288,4293,4297],{"type":47,"tag":575,"props":4289,"children":4290},{"style":613},[4291],{"type":53,"value":4292},"      \u003C\u002F",{"type":47,"tag":575,"props":4294,"children":4295},{"style":3660},[4296],{"type":53,"value":4048},{"type":47,"tag":575,"props":4298,"children":4299},{"style":613},[4300],{"type":53,"value":2615},{"type":47,"tag":575,"props":4302,"children":4303},{"class":577,"line":3234},[4304,4308,4312,4316,4320,4324,4329,4333,4337,4342,4346,4350],{"type":47,"tag":575,"props":4305,"children":4306},{"style":613},[4307],{"type":53,"value":3835},{"type":47,"tag":575,"props":4309,"children":4310},{"style":3660},[4311],{"type":53,"value":3663},{"type":47,"tag":575,"props":4313,"children":4314},{"style":1223},[4315],{"type":53,"value":3668},{"type":47,"tag":575,"props":4317,"children":4318},{"style":613},[4319],{"type":53,"value":1654},{"type":47,"tag":575,"props":4321,"children":4322},{"style":613},[4323],{"type":53,"value":1231},{"type":47,"tag":575,"props":4325,"children":4326},{"style":597},[4327],{"type":53,"value":4328},"suggestion",{"type":47,"tag":575,"props":4330,"children":4331},{"style":613},[4332],{"type":53,"value":1231},{"type":47,"tag":575,"props":4334,"children":4335},{"style":613},[4336],{"type":53,"value":632},{"type":47,"tag":575,"props":4338,"children":4339},{"style":624},[4340],{"type":53,"value":4341},"Fix: description of suggested fix",{"type":47,"tag":575,"props":4343,"children":4344},{"style":613},[4345],{"type":53,"value":3752},{"type":47,"tag":575,"props":4347,"children":4348},{"style":3660},[4349],{"type":53,"value":3663},{"type":47,"tag":575,"props":4351,"children":4352},{"style":613},[4353],{"type":53,"value":2615},{"type":47,"tag":575,"props":4355,"children":4356},{"class":577,"line":3243},[4357,4361,4365,4369,4373,4377,4382,4386],{"type":47,"tag":575,"props":4358,"children":4359},{"style":613},[4360],{"type":53,"value":3835},{"type":47,"tag":575,"props":4362,"children":4363},{"style":3660},[4364],{"type":53,"value":3663},{"type":47,"tag":575,"props":4366,"children":4367},{"style":1223},[4368],{"type":53,"value":3668},{"type":47,"tag":575,"props":4370,"children":4371},{"style":613},[4372],{"type":53,"value":1654},{"type":47,"tag":575,"props":4374,"children":4375},{"style":613},[4376],{"type":53,"value":1231},{"type":47,"tag":575,"props":4378,"children":4379},{"style":597},[4380],{"type":53,"value":4381},"screenshot",{"type":47,"tag":575,"props":4383,"children":4384},{"style":613},[4385],{"type":53,"value":1231},{"type":47,"tag":575,"props":4387,"children":4388},{"style":613},[4389],{"type":53,"value":2615},{"type":47,"tag":575,"props":4391,"children":4392},{"class":577,"line":3251},[4393,4397,4402,4407,4411,4415,4420,4424,4429,4433,4437,4442,4446],{"type":47,"tag":575,"props":4394,"children":4395},{"style":613},[4396],{"type":53,"value":4060},{"type":47,"tag":575,"props":4398,"children":4399},{"style":3660},[4400],{"type":53,"value":4401},"img",{"type":47,"tag":575,"props":4403,"children":4404},{"style":1223},[4405],{"type":53,"value":4406}," src",{"type":47,"tag":575,"props":4408,"children":4409},{"style":613},[4410],{"type":53,"value":1654},{"type":47,"tag":575,"props":4412,"children":4413},{"style":613},[4414],{"type":53,"value":1231},{"type":47,"tag":575,"props":4416,"children":4417},{"style":597},[4418],{"type":53,"value":4419},"data:image\u002Fpng;base64,...",{"type":47,"tag":575,"props":4421,"children":4422},{"style":613},[4423],{"type":53,"value":1231},{"type":47,"tag":575,"props":4425,"children":4426},{"style":1223},[4427],{"type":53,"value":4428}," alt",{"type":47,"tag":575,"props":4430,"children":4431},{"style":613},[4432],{"type":53,"value":1654},{"type":47,"tag":575,"props":4434,"children":4435},{"style":613},[4436],{"type":53,"value":1231},{"type":47,"tag":575,"props":4438,"children":4439},{"style":597},[4440],{"type":53,"value":4441},"Screenshot of failure",{"type":47,"tag":575,"props":4443,"children":4444},{"style":613},[4445],{"type":53,"value":1231},{"type":47,"tag":575,"props":4447,"children":4448},{"style":613},[4449],{"type":53,"value":2615},{"type":47,"tag":575,"props":4451,"children":4452},{"class":577,"line":3260},[4453,4457,4461,4465,4469,4473,4478,4482,4486,4491,4495,4499],{"type":47,"tag":575,"props":4454,"children":4455},{"style":613},[4456],{"type":53,"value":4060},{"type":47,"tag":575,"props":4458,"children":4459},{"style":3660},[4460],{"type":53,"value":3663},{"type":47,"tag":575,"props":4462,"children":4463},{"style":1223},[4464],{"type":53,"value":3668},{"type":47,"tag":575,"props":4466,"children":4467},{"style":613},[4468],{"type":53,"value":1654},{"type":47,"tag":575,"props":4470,"children":4471},{"style":613},[4472],{"type":53,"value":1231},{"type":47,"tag":575,"props":4474,"children":4475},{"style":597},[4476],{"type":53,"value":4477},"caption",{"type":47,"tag":575,"props":4479,"children":4480},{"style":613},[4481],{"type":53,"value":1231},{"type":47,"tag":575,"props":4483,"children":4484},{"style":613},[4485],{"type":53,"value":632},{"type":47,"tag":575,"props":4487,"children":4488},{"style":624},[4489],{"type":53,"value":4490},"step-id.png — captured at moment of failure",{"type":47,"tag":575,"props":4492,"children":4493},{"style":613},[4494],{"type":53,"value":3752},{"type":47,"tag":575,"props":4496,"children":4497},{"style":3660},[4498],{"type":53,"value":3663},{"type":47,"tag":575,"props":4500,"children":4501},{"style":613},[4502],{"type":53,"value":2615},{"type":47,"tag":575,"props":4504,"children":4506},{"class":577,"line":4505},21,[4507,4511,4515],{"type":47,"tag":575,"props":4508,"children":4509},{"style":613},[4510],{"type":53,"value":4292},{"type":47,"tag":575,"props":4512,"children":4513},{"style":3660},[4514],{"type":53,"value":3663},{"type":47,"tag":575,"props":4516,"children":4517},{"style":613},[4518],{"type":53,"value":2615},{"type":47,"tag":575,"props":4520,"children":4522},{"class":577,"line":4521},22,[4523,4527,4531],{"type":47,"tag":575,"props":4524,"children":4525},{"style":613},[4526],{"type":53,"value":3992},{"type":47,"tag":575,"props":4528,"children":4529},{"style":3660},[4530],{"type":53,"value":3663},{"type":47,"tag":575,"props":4532,"children":4533},{"style":613},[4534],{"type":53,"value":2615},{"type":47,"tag":575,"props":4536,"children":4538},{"class":577,"line":4537},23,[4539,4544,4548],{"type":47,"tag":575,"props":4540,"children":4541},{"style":613},[4542],{"type":53,"value":4543},"  \u003C\u002F",{"type":47,"tag":575,"props":4545,"children":4546},{"style":3660},[4547],{"type":53,"value":3781},{"type":47,"tag":575,"props":4549,"children":4550},{"style":613},[4551],{"type":53,"value":2615},{"type":47,"tag":575,"props":4553,"children":4555},{"class":577,"line":4554},24,[4556,4560,4564],{"type":47,"tag":575,"props":4557,"children":4558},{"style":613},[4559],{"type":53,"value":3752},{"type":47,"tag":575,"props":4561,"children":4562},{"style":3660},[4563],{"type":53,"value":3663},{"type":47,"tag":575,"props":4565,"children":4566},{"style":613},[4567],{"type":53,"value":2615},{"type":47,"tag":575,"props":4569,"children":4571},{"class":577,"line":4570},25,[4572],{"type":47,"tag":575,"props":4573,"children":4574},{"emptyLinePlaceholder":644},[4575],{"type":53,"value":647},{"type":47,"tag":575,"props":4577,"children":4579},{"class":577,"line":4578},26,[4580],{"type":47,"tag":575,"props":4581,"children":4582},{"style":582},[4583],{"type":53,"value":4584},"\u003C!-- Passed test card (collapsed by default) -->\n",{"type":47,"tag":575,"props":4586,"children":4588},{"class":577,"line":4587},27,[4589,4593,4597,4601,4605,4609,4613,4617],{"type":47,"tag":575,"props":4590,"children":4591},{"style":613},[4592],{"type":53,"value":616},{"type":47,"tag":575,"props":4594,"children":4595},{"style":3660},[4596],{"type":53,"value":3663},{"type":47,"tag":575,"props":4598,"children":4599},{"style":1223},[4600],{"type":53,"value":3668},{"type":47,"tag":575,"props":4602,"children":4603},{"style":613},[4604],{"type":53,"value":1654},{"type":47,"tag":575,"props":4606,"children":4607},{"style":613},[4608],{"type":53,"value":1231},{"type":47,"tag":575,"props":4610,"children":4611},{"style":597},[4612],{"type":53,"value":3681},{"type":47,"tag":575,"props":4614,"children":4615},{"style":613},[4616],{"type":53,"value":1231},{"type":47,"tag":575,"props":4618,"children":4619},{"style":613},[4620],{"type":53,"value":2615},{"type":47,"tag":575,"props":4622,"children":4624},{"class":577,"line":4623},28,[4625,4629,4633,4637,4642,4646,4650,4654,4658,4662,4666,4670,4674,4678,4682,4686,4690,4694],{"type":47,"tag":575,"props":4626,"children":4627},{"style":613},[4628],{"type":53,"value":3697},{"type":47,"tag":575,"props":4630,"children":4631},{"style":3660},[4632],{"type":53,"value":110},{"type":47,"tag":575,"props":4634,"children":4635},{"style":613},[4636],{"type":53,"value":632},{"type":47,"tag":575,"props":4638,"children":4639},{"style":624},[4640],{"type":53,"value":4641},"Passed ",{"type":47,"tag":575,"props":4643,"children":4644},{"style":613},[4645],{"type":53,"value":616},{"type":47,"tag":575,"props":4647,"children":4648},{"style":3660},[4649],{"type":53,"value":575},{"type":47,"tag":575,"props":4651,"children":4652},{"style":1223},[4653],{"type":53,"value":3668},{"type":47,"tag":575,"props":4655,"children":4656},{"style":613},[4657],{"type":53,"value":1654},{"type":47,"tag":575,"props":4659,"children":4660},{"style":613},[4661],{"type":53,"value":1231},{"type":47,"tag":575,"props":4663,"children":4664},{"style":597},[4665],{"type":53,"value":3735},{"type":47,"tag":575,"props":4667,"children":4668},{"style":613},[4669],{"type":53,"value":1231},{"type":47,"tag":575,"props":4671,"children":4672},{"style":613},[4673],{"type":53,"value":632},{"type":47,"tag":575,"props":4675,"children":4676},{"style":624},[4677],{"type":53,"value":3498},{"type":47,"tag":575,"props":4679,"children":4680},{"style":613},[4681],{"type":53,"value":3752},{"type":47,"tag":575,"props":4683,"children":4684},{"style":3660},[4685],{"type":53,"value":575},{"type":47,"tag":575,"props":4687,"children":4688},{"style":613},[4689],{"type":53,"value":3761},{"type":47,"tag":575,"props":4691,"children":4692},{"style":3660},[4693],{"type":53,"value":110},{"type":47,"tag":575,"props":4695,"children":4696},{"style":613},[4697],{"type":53,"value":2615},{"type":47,"tag":575,"props":4699,"children":4701},{"class":577,"line":4700},29,[4702,4706,4710,4714,4718,4722,4727,4731],{"type":47,"tag":575,"props":4703,"children":4704},{"style":613},[4705],{"type":53,"value":3697},{"type":47,"tag":575,"props":4707,"children":4708},{"style":3660},[4709],{"type":53,"value":3781},{"type":47,"tag":575,"props":4711,"children":4712},{"style":1223},[4713],{"type":53,"value":3668},{"type":47,"tag":575,"props":4715,"children":4716},{"style":613},[4717],{"type":53,"value":1654},{"type":47,"tag":575,"props":4719,"children":4720},{"style":613},[4721],{"type":53,"value":1231},{"type":47,"tag":575,"props":4723,"children":4724},{"style":597},[4725],{"type":53,"value":4726},"test-card pass",{"type":47,"tag":575,"props":4728,"children":4729},{"style":613},[4730],{"type":53,"value":1231},{"type":47,"tag":575,"props":4732,"children":4733},{"style":613},[4734],{"type":53,"value":2615},{"type":47,"tag":575,"props":4736,"children":4738},{"class":577,"line":4737},30,[4739,4743,4747],{"type":47,"tag":575,"props":4740,"children":4741},{"style":613},[4742],{"type":53,"value":3818},{"type":47,"tag":575,"props":4744,"children":4745},{"style":3660},[4746],{"type":53,"value":3823},{"type":47,"tag":575,"props":4748,"children":4749},{"style":613},[4750],{"type":53,"value":2615},{"type":47,"tag":575,"props":4752,"children":4754},{"class":577,"line":4753},31,[4755,4759,4763,4767,4771,4775,4780,4784,4788,4793,4797,4801],{"type":47,"tag":575,"props":4756,"children":4757},{"style":613},[4758],{"type":53,"value":3835},{"type":47,"tag":575,"props":4760,"children":4761},{"style":3660},[4762],{"type":53,"value":575},{"type":47,"tag":575,"props":4764,"children":4765},{"style":1223},[4766],{"type":53,"value":3668},{"type":47,"tag":575,"props":4768,"children":4769},{"style":613},[4770],{"type":53,"value":1654},{"type":47,"tag":575,"props":4772,"children":4773},{"style":613},[4774],{"type":53,"value":1231},{"type":47,"tag":575,"props":4776,"children":4777},{"style":597},[4778],{"type":53,"value":4779},"badge pass",{"type":47,"tag":575,"props":4781,"children":4782},{"style":613},[4783],{"type":53,"value":1231},{"type":47,"tag":575,"props":4785,"children":4786},{"style":613},[4787],{"type":53,"value":632},{"type":47,"tag":575,"props":4789,"children":4790},{"style":624},[4791],{"type":53,"value":4792},"PASS",{"type":47,"tag":575,"props":4794,"children":4795},{"style":613},[4796],{"type":53,"value":3752},{"type":47,"tag":575,"props":4798,"children":4799},{"style":3660},[4800],{"type":53,"value":575},{"type":47,"tag":575,"props":4802,"children":4803},{"style":613},[4804],{"type":53,"value":2615},{"type":47,"tag":575,"props":4806,"children":4808},{"class":577,"line":4807},32,[4809,4813,4817,4821,4825,4829,4833,4837,4841,4845,4849,4853],{"type":47,"tag":575,"props":4810,"children":4811},{"style":613},[4812],{"type":53,"value":3835},{"type":47,"tag":575,"props":4814,"children":4815},{"style":3660},[4816],{"type":53,"value":575},{"type":47,"tag":575,"props":4818,"children":4819},{"style":1223},[4820],{"type":53,"value":3668},{"type":47,"tag":575,"props":4822,"children":4823},{"style":613},[4824],{"type":53,"value":1654},{"type":47,"tag":575,"props":4826,"children":4827},{"style":613},[4828],{"type":53,"value":1231},{"type":47,"tag":575,"props":4830,"children":4831},{"style":597},[4832],{"type":53,"value":487},{"type":47,"tag":575,"props":4834,"children":4835},{"style":613},[4836],{"type":53,"value":1231},{"type":47,"tag":575,"props":4838,"children":4839},{"style":613},[4840],{"type":53,"value":632},{"type":47,"tag":575,"props":4842,"children":4843},{"style":624},[4844],{"type":53,"value":3921},{"type":47,"tag":575,"props":4846,"children":4847},{"style":613},[4848],{"type":53,"value":3752},{"type":47,"tag":575,"props":4850,"children":4851},{"style":3660},[4852],{"type":53,"value":575},{"type":47,"tag":575,"props":4854,"children":4855},{"style":613},[4856],{"type":53,"value":2615},{"type":47,"tag":575,"props":4858,"children":4860},{"class":577,"line":4859},33,[4861,4865,4869,4873,4877,4881,4885,4889,4893,4898,4902,4906],{"type":47,"tag":575,"props":4862,"children":4863},{"style":613},[4864],{"type":53,"value":3835},{"type":47,"tag":575,"props":4866,"children":4867},{"style":3660},[4868],{"type":53,"value":575},{"type":47,"tag":575,"props":4870,"children":4871},{"style":1223},[4872],{"type":53,"value":3668},{"type":47,"tag":575,"props":4874,"children":4875},{"style":613},[4876],{"type":53,"value":1654},{"type":47,"tag":575,"props":4878,"children":4879},{"style":613},[4880],{"type":53,"value":1231},{"type":47,"tag":575,"props":4882,"children":4883},{"style":597},[4884],{"type":53,"value":519},{"type":47,"tag":575,"props":4886,"children":4887},{"style":613},[4888],{"type":53,"value":1231},{"type":47,"tag":575,"props":4890,"children":4891},{"style":613},[4892],{"type":53,"value":632},{"type":47,"tag":575,"props":4894,"children":4895},{"style":624},[4896],{"type":53,"value":4897},"evidence summary",{"type":47,"tag":575,"props":4899,"children":4900},{"style":613},[4901],{"type":53,"value":3752},{"type":47,"tag":575,"props":4903,"children":4904},{"style":3660},[4905],{"type":53,"value":575},{"type":47,"tag":575,"props":4907,"children":4908},{"style":613},[4909],{"type":53,"value":2615},{"type":47,"tag":575,"props":4911,"children":4913},{"class":577,"line":4912},34,[4914,4918,4922],{"type":47,"tag":575,"props":4915,"children":4916},{"style":613},[4917],{"type":53,"value":3992},{"type":47,"tag":575,"props":4919,"children":4920},{"style":3660},[4921],{"type":53,"value":3823},{"type":47,"tag":575,"props":4923,"children":4924},{"style":613},[4925],{"type":53,"value":2615},{"type":47,"tag":575,"props":4927,"children":4929},{"class":577,"line":4928},35,[4930,4934,4938,4942,4946,4950,4954,4958],{"type":47,"tag":575,"props":4931,"children":4932},{"style":613},[4933],{"type":53,"value":3818},{"type":47,"tag":575,"props":4935,"children":4936},{"style":3660},[4937],{"type":53,"value":3663},{"type":47,"tag":575,"props":4939,"children":4940},{"style":1223},[4941],{"type":53,"value":3668},{"type":47,"tag":575,"props":4943,"children":4944},{"style":613},[4945],{"type":53,"value":1654},{"type":47,"tag":575,"props":4947,"children":4948},{"style":613},[4949],{"type":53,"value":1231},{"type":47,"tag":575,"props":4951,"children":4952},{"style":597},[4953],{"type":53,"value":4028},{"type":47,"tag":575,"props":4955,"children":4956},{"style":613},[4957],{"type":53,"value":1231},{"type":47,"tag":575,"props":4959,"children":4960},{"style":613},[4961],{"type":53,"value":2615},{"type":47,"tag":575,"props":4963,"children":4965},{"class":577,"line":4964},36,[4966,4970,4974],{"type":47,"tag":575,"props":4967,"children":4968},{"style":613},[4969],{"type":53,"value":3835},{"type":47,"tag":575,"props":4971,"children":4972},{"style":3660},[4973],{"type":53,"value":4048},{"type":47,"tag":575,"props":4975,"children":4976},{"style":613},[4977],{"type":53,"value":2615},{"type":47,"tag":575,"props":4979,"children":4981},{"class":577,"line":4980},37,[4982,4986,4990,4994,4998,5002,5006,5010,5014,5018,5022,5026,5030],{"type":47,"tag":575,"props":4983,"children":4984},{"style":613},[4985],{"type":53,"value":4060},{"type":47,"tag":575,"props":4987,"children":4988},{"style":3660},[4989],{"type":53,"value":4065},{"type":47,"tag":575,"props":4991,"children":4992},{"style":613},[4993],{"type":53,"value":632},{"type":47,"tag":575,"props":4995,"children":4996},{"style":624},[4997],{"type":53,"value":4074},{"type":47,"tag":575,"props":4999,"children":5000},{"style":613},[5001],{"type":53,"value":3752},{"type":47,"tag":575,"props":5003,"children":5004},{"style":3660},[5005],{"type":53,"value":4065},{"type":47,"tag":575,"props":5007,"children":5008},{"style":613},[5009],{"type":53,"value":4087},{"type":47,"tag":575,"props":5011,"children":5012},{"style":3660},[5013],{"type":53,"value":4092},{"type":47,"tag":575,"props":5015,"children":5016},{"style":613},[5017],{"type":53,"value":632},{"type":47,"tag":575,"props":5019,"children":5020},{"style":624},[5021],{"type":53,"value":4101},{"type":47,"tag":575,"props":5023,"children":5024},{"style":613},[5025],{"type":53,"value":3752},{"type":47,"tag":575,"props":5027,"children":5028},{"style":3660},[5029],{"type":53,"value":4092},{"type":47,"tag":575,"props":5031,"children":5032},{"style":613},[5033],{"type":53,"value":2615},{"type":47,"tag":575,"props":5035,"children":5037},{"class":577,"line":5036},38,[5038,5042,5046,5050,5055,5059,5063,5067,5071,5075,5080,5084,5088],{"type":47,"tag":575,"props":5039,"children":5040},{"style":613},[5041],{"type":53,"value":4060},{"type":47,"tag":575,"props":5043,"children":5044},{"style":3660},[5045],{"type":53,"value":4065},{"type":47,"tag":575,"props":5047,"children":5048},{"style":613},[5049],{"type":53,"value":632},{"type":47,"tag":575,"props":5051,"children":5052},{"style":624},[5053],{"type":53,"value":5054},"Evidence",{"type":47,"tag":575,"props":5056,"children":5057},{"style":613},[5058],{"type":53,"value":3752},{"type":47,"tag":575,"props":5060,"children":5061},{"style":3660},[5062],{"type":53,"value":4065},{"type":47,"tag":575,"props":5064,"children":5065},{"style":613},[5066],{"type":53,"value":4087},{"type":47,"tag":575,"props":5068,"children":5069},{"style":3660},[5070],{"type":53,"value":4092},{"type":47,"tag":575,"props":5072,"children":5073},{"style":613},[5074],{"type":53,"value":632},{"type":47,"tag":575,"props":5076,"children":5077},{"style":624},[5078],{"type":53,"value":5079},"What was observed",{"type":47,"tag":575,"props":5081,"children":5082},{"style":613},[5083],{"type":53,"value":3752},{"type":47,"tag":575,"props":5085,"children":5086},{"style":3660},[5087],{"type":53,"value":4092},{"type":47,"tag":575,"props":5089,"children":5090},{"style":613},[5091],{"type":53,"value":2615},{"type":47,"tag":575,"props":5093,"children":5095},{"class":577,"line":5094},39,[5096,5100,5104],{"type":47,"tag":575,"props":5097,"children":5098},{"style":613},[5099],{"type":53,"value":4292},{"type":47,"tag":575,"props":5101,"children":5102},{"style":3660},[5103],{"type":53,"value":4048},{"type":47,"tag":575,"props":5105,"children":5106},{"style":613},[5107],{"type":53,"value":2615},{"type":47,"tag":575,"props":5109,"children":5111},{"class":577,"line":5110},40,[5112,5116,5120],{"type":47,"tag":575,"props":5113,"children":5114},{"style":613},[5115],{"type":53,"value":3992},{"type":47,"tag":575,"props":5117,"children":5118},{"style":3660},[5119],{"type":53,"value":3663},{"type":47,"tag":575,"props":5121,"children":5122},{"style":613},[5123],{"type":53,"value":2615},{"type":47,"tag":575,"props":5125,"children":5127},{"class":577,"line":5126},41,[5128,5132,5136],{"type":47,"tag":575,"props":5129,"children":5130},{"style":613},[5131],{"type":53,"value":4543},{"type":47,"tag":575,"props":5133,"children":5134},{"style":3660},[5135],{"type":53,"value":3781},{"type":47,"tag":575,"props":5137,"children":5138},{"style":613},[5139],{"type":53,"value":2615},{"type":47,"tag":575,"props":5141,"children":5143},{"class":577,"line":5142},42,[5144,5148,5152],{"type":47,"tag":575,"props":5145,"children":5146},{"style":613},[5147],{"type":53,"value":3752},{"type":47,"tag":575,"props":5149,"children":5150},{"style":3660},[5151],{"type":53,"value":3663},{"type":47,"tag":575,"props":5153,"children":5154},{"style":613},[5155],{"type":53,"value":2615},{"type":47,"tag":851,"props":5157,"children":5158},{"start":650},[5159],{"type":47,"tag":79,"props":5160,"children":5161},{},[5162,5167],{"type":47,"tag":62,"props":5163,"children":5164},{},[5165],{"type":53,"value":5166},"Embed screenshots as base64",{"type":53,"value":5168}," so the HTML is fully self-contained:",{"type":47,"tag":292,"props":5170,"children":5172},{"className":567,"code":5171,"language":569,"meta":301,"style":301},"# Convert screenshot to base64 data URI\nbase64 -i .context\u002Fui-test-screenshots\u002Fstep-id.png | tr -d '\\n'\n# Use as: src=\"data:image\u002Fpng;base64,\u003Coutput>\"\n",[5173],{"type":47,"tag":299,"props":5174,"children":5175},{"__ignoreMap":301},[5176,5184,5231],{"type":47,"tag":575,"props":5177,"children":5178},{"class":577,"line":578},[5179],{"type":47,"tag":575,"props":5180,"children":5181},{"style":582},[5182],{"type":53,"value":5183},"# Convert screenshot to base64 data URI\n",{"type":47,"tag":575,"props":5185,"children":5186},{"class":577,"line":588},[5187,5192,5197,5202,5206,5211,5216,5221,5226],{"type":47,"tag":575,"props":5188,"children":5189},{"style":592},[5190],{"type":53,"value":5191},"base64",{"type":47,"tag":575,"props":5193,"children":5194},{"style":597},[5195],{"type":53,"value":5196}," -i",{"type":47,"tag":575,"props":5198,"children":5199},{"style":597},[5200],{"type":53,"value":5201}," .context\u002Fui-test-screenshots\u002Fstep-id.png",{"type":47,"tag":575,"props":5203,"children":5204},{"style":613},[5205],{"type":53,"value":1713},{"type":47,"tag":575,"props":5207,"children":5208},{"style":592},[5209],{"type":53,"value":5210}," tr",{"type":47,"tag":575,"props":5212,"children":5213},{"style":597},[5214],{"type":53,"value":5215}," -d",{"type":47,"tag":575,"props":5217,"children":5218},{"style":613},[5219],{"type":53,"value":5220}," '",{"type":47,"tag":575,"props":5222,"children":5223},{"style":597},[5224],{"type":53,"value":5225},"\\n",{"type":47,"tag":575,"props":5227,"children":5228},{"style":613},[5229],{"type":53,"value":5230},"'\n",{"type":47,"tag":575,"props":5232,"children":5233},{"class":577,"line":640},[5234],{"type":47,"tag":575,"props":5235,"children":5236},{"style":582},[5237],{"type":53,"value":5238},"# Use as: src=\"data:image\u002Fpng;base64,\u003Coutput>\"\n",{"type":47,"tag":56,"props":5240,"children":5241},{},[5242,5244,5250],{"type":53,"value":5243},"Read each screenshot file referenced in STEP_FAIL markers, base64-encode it, and embed it as an ",{"type":47,"tag":299,"props":5245,"children":5247},{"className":5246},[],[5248],{"type":53,"value":5249},"\u003Cimg src=\"data:image\u002Fpng;base64,...\">",{"type":53,"value":5251}," in the corresponding test card. For STEP_PASS, only embed a screenshot if one was explicitly taken (e.g., baseline screenshots).",{"type":47,"tag":851,"props":5253,"children":5254},{"start":659},[5255],{"type":47,"tag":79,"props":5256,"children":5257},{},[5258,5260,5266],{"type":53,"value":5259},"Write the final HTML to ",{"type":47,"tag":299,"props":5261,"children":5263},{"className":5262},[],[5264],{"type":53,"value":5265},".context\u002Fui-test-report.html",{"type":53,"value":1236},{"type":47,"tag":292,"props":5268,"children":5270},{"className":567,"code":5269,"language":569,"meta":301,"style":301},"# Write the generated HTML\ncat > .context\u002Fui-test-report.html \u003C\u003C 'REPORT_EOF'\n\u003C!DOCTYPE html>\n...generated report...\nREPORT_EOF\n\n# Open it for the reviewer\nopen .context\u002Fui-test-report.html  # macOS\n# xdg-open .context\u002Fui-test-report.html  # Linux\n",[5271],{"type":47,"tag":299,"props":5272,"children":5273},{"__ignoreMap":301},[5274,5282,5310,5318,5326,5334,5341,5349,5366],{"type":47,"tag":575,"props":5275,"children":5276},{"class":577,"line":578},[5277],{"type":47,"tag":575,"props":5278,"children":5279},{"style":582},[5280],{"type":53,"value":5281},"# Write the generated HTML\n",{"type":47,"tag":575,"props":5283,"children":5284},{"class":577,"line":588},[5285,5290,5295,5300,5305],{"type":47,"tag":575,"props":5286,"children":5287},{"style":592},[5288],{"type":53,"value":5289},"cat",{"type":47,"tag":575,"props":5291,"children":5292},{"style":613},[5293],{"type":53,"value":5294}," >",{"type":47,"tag":575,"props":5296,"children":5297},{"style":597},[5298],{"type":53,"value":5299}," .context\u002Fui-test-report.html",{"type":47,"tag":575,"props":5301,"children":5302},{"style":613},[5303],{"type":53,"value":5304}," \u003C\u003C",{"type":47,"tag":575,"props":5306,"children":5307},{"style":613},[5308],{"type":53,"value":5309}," 'REPORT_EOF'\n",{"type":47,"tag":575,"props":5311,"children":5312},{"class":577,"line":640},[5313],{"type":47,"tag":575,"props":5314,"children":5315},{"style":597},[5316],{"type":53,"value":5317},"\u003C!DOCTYPE html>\n",{"type":47,"tag":575,"props":5319,"children":5320},{"class":577,"line":650},[5321],{"type":47,"tag":575,"props":5322,"children":5323},{"style":597},[5324],{"type":53,"value":5325},"...generated report...\n",{"type":47,"tag":575,"props":5327,"children":5328},{"class":577,"line":659},[5329],{"type":47,"tag":575,"props":5330,"children":5331},{"style":613},[5332],{"type":53,"value":5333},"REPORT_EOF\n",{"type":47,"tag":575,"props":5335,"children":5336},{"class":577,"line":672},[5337],{"type":47,"tag":575,"props":5338,"children":5339},{"emptyLinePlaceholder":644},[5340],{"type":53,"value":647},{"type":47,"tag":575,"props":5342,"children":5343},{"class":577,"line":681},[5344],{"type":47,"tag":575,"props":5345,"children":5346},{"style":582},[5347],{"type":53,"value":5348},"# Open it for the reviewer\n",{"type":47,"tag":575,"props":5350,"children":5351},{"class":577,"line":1005},[5352,5357,5361],{"type":47,"tag":575,"props":5353,"children":5354},{"style":592},[5355],{"type":53,"value":5356},"open",{"type":47,"tag":575,"props":5358,"children":5359},{"style":597},[5360],{"type":53,"value":5299},{"type":47,"tag":575,"props":5362,"children":5363},{"style":582},[5364],{"type":53,"value":5365},"  # macOS\n",{"type":47,"tag":575,"props":5367,"children":5368},{"class":577,"line":1014},[5369],{"type":47,"tag":575,"props":5370,"children":5371},{"style":582},[5372],{"type":53,"value":5373},"# xdg-open .context\u002Fui-test-report.html  # Linux\n",{"type":47,"tag":851,"props":5375,"children":5376},{"start":672},[5377],{"type":47,"tag":79,"props":5378,"children":5379},{},[5380,5382,5388],{"type":53,"value":5381},"Tell the user: ",{"type":47,"tag":299,"props":5383,"children":5385},{"className":5384},[],[5386],{"type":53,"value":5387},"Report saved to .context\u002Fui-test-report.html",{"type":53,"value":5389}," and offer to open it.",{"type":47,"tag":56,"props":5391,"children":5392},{},[5393],{"type":47,"tag":62,"props":5394,"children":5395},{},[5396],{"type":53,"value":764},{"type":47,"tag":75,"props":5398,"children":5399},{},[5400,5405,5417,5422,5427,5432],{"type":47,"tag":79,"props":5401,"children":5402},{},[5403],{"type":53,"value":5404},"Failures section comes before passes — reviewers care about what's broken first",{"type":47,"tag":79,"props":5406,"children":5407},{},[5408,5410,5415],{"type":53,"value":5409},"Failed cards are ",{"type":47,"tag":299,"props":5411,"children":5413},{"className":5412},[],[5414],{"type":53,"value":5356},{"type":53,"value":5416}," by default; passed cards are collapsed",{"type":47,"tag":79,"props":5418,"children":5419},{},[5420],{"type":53,"value":5421},"Every STEP_FAIL card MUST have an embedded screenshot — if the screenshot file is missing, note it in the card",{"type":47,"tag":79,"props":5423,"children":5424},{},[5425],{"type":53,"value":5426},"Include the suggestion\u002Ffix in each failure card if one was provided",{"type":47,"tag":79,"props":5428,"children":5429},{},[5430],{"type":53,"value":5431},"The report must work offline — no CDN links, no external assets",{"type":47,"tag":79,"props":5433,"children":5434},{},[5435],{"type":53,"value":5436},"Keep the HTML under 5MB — if screenshots push it over, reduce image quality or skip baseline screenshots for passes",{"type":47,"tag":110,"props":5438,"children":5440},{"id":5439},"adversarial-test-patterns",[5441],{"type":53,"value":5442},"Adversarial Test Patterns",{"type":47,"tag":56,"props":5444,"children":5445},{},[5446,5448,5453],{"type":53,"value":5447},"Apply these to every interactive element you test. Read ",{"type":47,"tag":3332,"props":5449,"children":5451},{"href":5450},"references\u002Fadversarial-patterns.md",[5452],{"type":53,"value":5450},{"type":53,"value":5454}," for the full pattern library (forms, modals, navigation, error states, keyboard accessibility).",{"type":47,"tag":110,"props":5456,"children":5458},{"id":5457},"deterministic-checks",[5459],{"type":53,"value":5460},"Deterministic Checks",{"type":47,"tag":56,"props":5462,"children":5463},{},[5464],{"type":53,"value":5465},"These produce structured data, not judgment calls. Use them as the strongest form of assertion.",{"type":47,"tag":1358,"props":5467,"children":5468},{},[5469,5490],{"type":47,"tag":1362,"props":5470,"children":5471},{},[5472],{"type":47,"tag":1366,"props":5473,"children":5474},{},[5475,5480,5485],{"type":47,"tag":1370,"props":5476,"children":5477},{},[5478],{"type":53,"value":5479},"Check",{"type":47,"tag":1370,"props":5481,"children":5482},{},[5483],{"type":53,"value":5484},"What it catches",{"type":47,"tag":1370,"props":5486,"children":5487},{},[5488],{"type":53,"value":5489},"Assertion",{"type":47,"tag":1391,"props":5491,"children":5492},{},[5493,5515,5533,5557],{"type":47,"tag":1366,"props":5494,"children":5495},{},[5496,5501,5506],{"type":47,"tag":1398,"props":5497,"children":5498},{},[5499],{"type":53,"value":5500},"axe-core",{"type":47,"tag":1398,"props":5502,"children":5503},{},[5504],{"type":53,"value":5505},"WCAG violations",{"type":47,"tag":1398,"props":5507,"children":5508},{},[5509],{"type":47,"tag":299,"props":5510,"children":5512},{"className":5511},[],[5513],{"type":53,"value":5514},"violations.length === 0",{"type":47,"tag":1366,"props":5516,"children":5517},{},[5518,5523,5528],{"type":47,"tag":1398,"props":5519,"children":5520},{},[5521],{"type":53,"value":5522},"Console errors",{"type":47,"tag":1398,"props":5524,"children":5525},{},[5526],{"type":53,"value":5527},"Runtime exceptions, failed requests",{"type":47,"tag":1398,"props":5529,"children":5530},{},[5531],{"type":53,"value":5532},"empty error array",{"type":47,"tag":1366,"props":5534,"children":5535},{},[5536,5541,5546],{"type":47,"tag":1398,"props":5537,"children":5538},{},[5539],{"type":53,"value":5540},"Broken images",{"type":47,"tag":1398,"props":5542,"children":5543},{},[5544],{"type":53,"value":5545},"Missing\u002Ffailed image loads",{"type":47,"tag":1398,"props":5547,"children":5548},{},[5549,5551],{"type":53,"value":5550},"no images with ",{"type":47,"tag":299,"props":5552,"children":5554},{"className":5553},[],[5555],{"type":53,"value":5556},"naturalWidth === 0",{"type":47,"tag":1366,"props":5558,"children":5559},{},[5560,5565,5570],{"type":47,"tag":1398,"props":5561,"children":5562},{},[5563],{"type":53,"value":5564},"Form labels",{"type":47,"tag":1398,"props":5566,"children":5567},{},[5568],{"type":53,"value":5569},"Inputs without accessible labels",{"type":47,"tag":1398,"props":5571,"children":5572},{},[5573,5575],{"type":53,"value":5574},"every input has ",{"type":47,"tag":299,"props":5576,"children":5578},{"className":5577},[],[5579],{"type":53,"value":5580},"hasLabel: true",{"type":47,"tag":56,"props":5582,"children":5583},{},[5584,5586,5591,5593,5598],{"type":53,"value":5585},"For the exact ",{"type":47,"tag":299,"props":5587,"children":5589},{"className":5588},[],[5590],{"type":53,"value":869},{"type":53,"value":5592}," recipes, read ",{"type":47,"tag":3332,"props":5594,"children":5596},{"href":5595},"references\u002Fbrowser-recipes.md",[5597],{"type":53,"value":5595},{"type":53,"value":1498},{"type":47,"tag":110,"props":5600,"children":5602},{"id":5601},"workflow-b-exploratory-testing",[5603],{"type":53,"value":5604},"Workflow B: Exploratory Testing",{"type":47,"tag":56,"props":5606,"children":5607},{},[5608],{"type":53,"value":5609},"No diff, no plan — just open the app and try to break it. Use this when the user says \"test my app\", \"find bugs\", or \"QA this site.\"",{"type":47,"tag":129,"props":5611,"children":5613},{"id":5612},"approach",[5614],{"type":53,"value":5615},"Approach",{"type":47,"tag":851,"props":5617,"children":5618},{},[5619,5637,5647,5657,5667],{"type":47,"tag":79,"props":5620,"children":5621},{},[5622,5627,5629,5635],{"type":47,"tag":62,"props":5623,"children":5624},{},[5625],{"type":53,"value":5626},"Discover the app",{"type":53,"value":5628}," — read ",{"type":47,"tag":299,"props":5630,"children":5632},{"className":5631},[],[5633],{"type":53,"value":5634},"package.json",{"type":53,"value":5636}," to detect the framework, then open the root URL and snapshot to see what's there",{"type":47,"tag":79,"props":5638,"children":5639},{},[5640,5645],{"type":47,"tag":62,"props":5641,"children":5642},{},[5643],{"type":53,"value":5644},"Navigate everything",{"type":53,"value":5646}," — click through nav links, visit every reachable page, note what exists",{"type":47,"tag":79,"props":5648,"children":5649},{},[5650,5655],{"type":47,"tag":62,"props":5651,"children":5652},{},[5653],{"type":53,"value":5654},"Test what you find",{"type":53,"value":5656}," — for each page, apply the adversarial patterns below (forms, modals, navigation, keyboard, error states)",{"type":47,"tag":79,"props":5658,"children":5659},{},[5660,5665],{"type":47,"tag":62,"props":5661,"children":5662},{},[5663],{"type":53,"value":5664},"Run deterministic checks",{"type":53,"value":5666}," — axe-core, console errors, broken images, form labels on every page",{"type":47,"tag":79,"props":5668,"children":5669},{},[5670,5675],{"type":47,"tag":62,"props":5671,"children":5672},{},[5673],{"type":53,"value":5674},"Report findings",{"type":53,"value":5676}," — use STEP_PASS\u002FSTEP_FAIL markers, include reproduction steps for failures",{"type":47,"tag":56,"props":5678,"children":5679},{},[5680],{"type":53,"value":5681},"Don't try to be systematic about coverage. Just explore like a user would, but with the intent to break things. The agent is good at this — let it roam.",{"type":47,"tag":129,"props":5683,"children":5685},{"id":5684},"tips-for-exploratory-runs",[5686],{"type":53,"value":5687},"Tips for exploratory runs",{"type":47,"tag":75,"props":5689,"children":5690},{},[5691,5696,5709,5714,5719,5724],{"type":47,"tag":79,"props":5692,"children":5693},{},[5694],{"type":53,"value":5695},"Start with the homepage, then follow the navigation naturally",{"type":47,"tag":79,"props":5697,"children":5698},{},[5699,5701,5707],{"type":53,"value":5700},"Try the 404 page (",{"type":47,"tag":299,"props":5702,"children":5704},{"className":5703},[],[5705],{"type":53,"value":5706},"\u002Fdoes-not-exist",{"type":53,"value":5708},") — is it custom or default?",{"type":47,"tag":79,"props":5710,"children":5711},{},[5712],{"type":53,"value":5713},"Look for empty states (pages with no data)",{"type":47,"tag":79,"props":5715,"children":5716},{},[5717],{"type":53,"value":5718},"Test forms with garbage input before valid input",{"type":47,"tag":79,"props":5720,"children":5721},{},[5722],{"type":53,"value":5723},"Check mobile viewport (375px) on every page — does it overflow?",{"type":47,"tag":79,"props":5725,"children":5726},{},[5727],{"type":53,"value":5728},"If the app has auth, use cookie-sync first",{"type":47,"tag":110,"props":5730,"children":5732},{"id":5731},"workflow-c-parallel-testing",[5733],{"type":53,"value":5734},"Workflow C: Parallel Testing",{"type":47,"tag":56,"props":5736,"children":5737},{},[5738,5740,5745,5747,5753],{"type":53,"value":5739},"Run independent test groups concurrently using named ",{"type":47,"tag":299,"props":5741,"children":5743},{"className":5742},[],[5744],{"type":53,"value":314},{"type":53,"value":5746}," sessions (",{"type":47,"tag":299,"props":5748,"children":5750},{"className":5749},[],[5751],{"type":53,"value":5752},"BROWSE_SESSION=\u003Cname>",{"type":53,"value":5754},"). Each session gets its own browser. Works with both local and remote mode.",{"type":47,"tag":56,"props":5756,"children":5757},{},[5758],{"type":53,"value":5759},"Use when testing multiple pages or categories and you want faster wall clock time.",{"type":47,"tag":56,"props":5761,"children":5762},{},[5763,5765,5770],{"type":53,"value":5764},"Read ",{"type":47,"tag":3332,"props":5766,"children":5768},{"href":5767},"references\u002Fparallel-testing.md",[5769],{"type":53,"value":5767},{"type":53,"value":5771}," for the full workflow: session setup, agent fan-out, cookie-sync for auth, and result merging.",{"type":47,"tag":110,"props":5773,"children":5775},{"id":5774},"design-consistency",[5776],{"type":53,"value":5777},"Design Consistency",{"type":47,"tag":56,"props":5779,"children":5780},{},[5781,5783,5788],{"type":53,"value":5782},"Check whether changed UI matches the rest of the app visually. Read ",{"type":47,"tag":3332,"props":5784,"children":5786},{"href":5785},"references\u002Fdesign-consistency.md",[5787],{"type":53,"value":5785},{"type":53,"value":5789}," when doing visual or design checks.",{"type":47,"tag":110,"props":5791,"children":5793},{"id":5792},"test-categories",[5794],{"type":53,"value":5795},"Test Categories",{"type":47,"tag":1358,"props":5797,"children":5798},{},[5799,5820],{"type":47,"tag":1362,"props":5800,"children":5801},{},[5802],{"type":47,"tag":1366,"props":5803,"children":5804},{},[5805,5810,5815],{"type":47,"tag":1370,"props":5806,"children":5807},{},[5808],{"type":53,"value":5809},"Category",{"type":47,"tag":1370,"props":5811,"children":5812},{},[5813],{"type":53,"value":5814},"How",{"type":47,"tag":1370,"props":5816,"children":5817},{},[5818],{"type":53,"value":5819},"Assertion type",{"type":47,"tag":1391,"props":5821,"children":5822},{},[5823,5840,5858,5876,5894,5912,5929,5947,5964],{"type":47,"tag":1366,"props":5824,"children":5825},{},[5826,5830,5835],{"type":47,"tag":1398,"props":5827,"children":5828},{},[5829],{"type":53,"value":13},{"type":47,"tag":1398,"props":5831,"children":5832},{},[5833],{"type":53,"value":5834},"axe-core + keyboard nav",{"type":47,"tag":1398,"props":5836,"children":5837},{},[5838],{"type":53,"value":5839},"Deterministic (violation count)",{"type":47,"tag":1366,"props":5841,"children":5842},{},[5843,5848,5853],{"type":47,"tag":1398,"props":5844,"children":5845},{},[5846],{"type":53,"value":5847},"Visual Quality",{"type":47,"tag":1398,"props":5849,"children":5850},{},[5851],{"type":53,"value":5852},"Screenshot + heuristic evaluation",{"type":47,"tag":1398,"props":5854,"children":5855},{},[5856],{"type":53,"value":5857},"Visual judgment (weakest — note specifics)",{"type":47,"tag":1366,"props":5859,"children":5860},{},[5861,5866,5871],{"type":47,"tag":1398,"props":5862,"children":5863},{},[5864],{"type":53,"value":5865},"Responsive",{"type":47,"tag":1398,"props":5867,"children":5868},{},[5869],{"type":53,"value":5870},"Viewport sweep + screenshots",{"type":47,"tag":1398,"props":5872,"children":5873},{},[5874],{"type":53,"value":5875},"Visual + deterministic (overflow check)",{"type":47,"tag":1366,"props":5877,"children":5878},{},[5879,5884,5889],{"type":47,"tag":1398,"props":5880,"children":5881},{},[5882],{"type":53,"value":5883},"Console Health",{"type":47,"tag":1398,"props":5885,"children":5886},{},[5887],{"type":53,"value":5888},"Console capture eval",{"type":47,"tag":1398,"props":5890,"children":5891},{},[5892],{"type":53,"value":5893},"Deterministic (error count)",{"type":47,"tag":1366,"props":5895,"children":5896},{},[5897,5902,5907],{"type":47,"tag":1398,"props":5898,"children":5899},{},[5900],{"type":53,"value":5901},"UX Heuristics",{"type":47,"tag":1398,"props":5903,"children":5904},{},[5905],{"type":53,"value":5906},"Snapshot + Laws of UX + Nielsen's",{"type":47,"tag":1398,"props":5908,"children":5909},{},[5910],{"type":53,"value":5911},"Structured judgment (cite specific heuristic)",{"type":47,"tag":1366,"props":5913,"children":5914},{},[5915,5920,5925],{"type":47,"tag":1398,"props":5916,"children":5917},{},[5918],{"type":53,"value":5919},"Error States",{"type":47,"tag":1398,"props":5921,"children":5922},{},[5923],{"type":53,"value":5924},"Navigate to empty\u002Ferror states",{"type":47,"tag":1398,"props":5926,"children":5927},{},[5928],{"type":53,"value":905},{"type":47,"tag":1366,"props":5930,"children":5931},{},[5932,5937,5942],{"type":47,"tag":1398,"props":5933,"children":5934},{},[5935],{"type":53,"value":5936},"Data Display",{"type":47,"tag":1398,"props":5938,"children":5939},{},[5940],{"type":53,"value":5941},"Snapshot on tables\u002Fdashboards",{"type":47,"tag":1398,"props":5943,"children":5944},{},[5945],{"type":53,"value":5946},"Element match (column count, formatting)",{"type":47,"tag":1366,"props":5948,"children":5949},{},[5950,5954,5959],{"type":47,"tag":1398,"props":5951,"children":5952},{},[5953],{"type":53,"value":5777},{"type":47,"tag":1398,"props":5955,"children":5956},{},[5957],{"type":53,"value":5958},"Screenshot baseline + changed page comparison",{"type":47,"tag":1398,"props":5960,"children":5961},{},[5962],{"type":53,"value":5963},"Visual judgment (cite specific property)",{"type":47,"tag":1366,"props":5965,"children":5966},{},[5967,5971,5976],{"type":47,"tag":1398,"props":5968,"children":5969},{},[5970],{"type":53,"value":96},{"type":47,"tag":1398,"props":5972,"children":5973},{},[5974],{"type":53,"value":5975},"Free navigation + adversarial testing",{"type":47,"tag":1398,"props":5977,"children":5978},{},[5979],{"type":53,"value":5980},"Before\u002Fafter + judgment",{"type":47,"tag":56,"props":5982,"children":5983},{},[5984],{"type":53,"value":5985},"Reference guides (load on demand):",{"type":47,"tag":75,"props":5987,"children":5988},{},[5989,6005,6020,6036,6052,6068,6083,6098],{"type":47,"tag":79,"props":5990,"children":5991},{},[5992,5997,5999,6003],{"type":47,"tag":62,"props":5993,"children":5994},{},[5995],{"type":53,"value":5996},"Adversarial patterns",{"type":53,"value":5998}," — ",{"type":47,"tag":3332,"props":6000,"children":6001},{"href":5450},[6002],{"type":53,"value":5450},{"type":53,"value":6004}," — load when testing forms, modals, navigation, or keyboard a11y",{"type":47,"tag":79,"props":6006,"children":6007},{},[6008,6013,6014,6018],{"type":47,"tag":62,"props":6009,"children":6010},{},[6011],{"type":53,"value":6012},"Browser recipes",{"type":53,"value":5998},{"type":47,"tag":3332,"props":6015,"children":6016},{"href":5595},[6017],{"type":53,"value":5595},{"type":53,"value":6019}," — load when running deterministic checks (axe-core, console, images, form labels)",{"type":47,"tag":79,"props":6021,"children":6022},{},[6023,6028,6029,6034],{"type":47,"tag":62,"props":6024,"children":6025},{},[6026],{"type":53,"value":6027},"Exploratory testing",{"type":53,"value":5998},{"type":47,"tag":3332,"props":6030,"children":6032},{"href":6031},"references\u002Fexploratory-testing.md",[6033],{"type":53,"value":6031},{"type":53,"value":6035}," — load for Workflow B (no diff, open exploration)",{"type":47,"tag":79,"props":6037,"children":6038},{},[6039,6044,6045,6050],{"type":47,"tag":62,"props":6040,"children":6041},{},[6042],{"type":53,"value":6043},"UX heuristics",{"type":53,"value":5998},{"type":47,"tag":3332,"props":6046,"children":6048},{"href":6047},"references\u002Fux-heuristics.md",[6049],{"type":53,"value":6047},{"type":53,"value":6051}," — load when evaluating UX quality or citing specific heuristics",{"type":47,"tag":79,"props":6053,"children":6054},{},[6055,6060,6061,6066],{"type":47,"tag":62,"props":6056,"children":6057},{},[6058],{"type":53,"value":6059},"Design system",{"type":53,"value":5998},{"type":47,"tag":3332,"props":6062,"children":6064},{"href":6063},"references\u002Fdesign-system.example.md",[6065],{"type":53,"value":6063},{"type":53,"value":6067}," — template for users to customize",{"type":47,"tag":79,"props":6069,"children":6070},{},[6071,6076,6077,6081],{"type":47,"tag":62,"props":6072,"children":6073},{},[6074],{"type":53,"value":6075},"Design consistency",{"type":53,"value":5998},{"type":47,"tag":3332,"props":6078,"children":6079},{"href":5785},[6080],{"type":53,"value":5785},{"type":53,"value":6082}," — load when doing visual consistency checks",{"type":47,"tag":79,"props":6084,"children":6085},{},[6086,6091,6092,6096],{"type":47,"tag":62,"props":6087,"children":6088},{},[6089],{"type":53,"value":6090},"Parallel testing",{"type":53,"value":5998},{"type":47,"tag":3332,"props":6093,"children":6094},{"href":5767},[6095],{"type":53,"value":5767},{"type":53,"value":6097}," — load for Workflow C (concurrent sessions)",{"type":47,"tag":79,"props":6099,"children":6100},{},[6101,6106,6107,6111],{"type":47,"tag":62,"props":6102,"children":6103},{},[6104],{"type":53,"value":6105},"Report template",{"type":53,"value":5998},{"type":47,"tag":3332,"props":6108,"children":6109},{"href":3334},[6110],{"type":53,"value":3334},{"type":53,"value":6112}," — HTML template for Phase 7 report generation",{"type":47,"tag":56,"props":6114,"children":6115},{},[6116,6118,6123],{"type":53,"value":6117},"For worked examples with exact commands, read ",{"type":47,"tag":3332,"props":6119,"children":6121},{"href":6120},"EXAMPLES.md",[6122],{"type":53,"value":6120},{"type":53,"value":6124}," if you need to see the assertion protocol in action.",{"type":47,"tag":110,"props":6126,"children":6128},{"id":6127},"best-practices",[6129],{"type":53,"value":6130},"Best Practices",{"type":47,"tag":851,"props":6132,"children":6133},{},[6134,6144,6154,6164,6187,6197,6228,6244,6254],{"type":47,"tag":79,"props":6135,"children":6136},{},[6137,6142],{"type":47,"tag":62,"props":6138,"children":6139},{},[6140],{"type":53,"value":6141},"Be adversarial",{"type":53,"value":6143}," — try to break things, don't just confirm they work",{"type":47,"tag":79,"props":6145,"children":6146},{},[6147,6152],{"type":47,"tag":62,"props":6148,"children":6149},{},[6150],{"type":53,"value":6151},"Every assertion needs evidence",{"type":53,"value":6153}," — snapshot ref, eval result, or before\u002Fafter diff",{"type":47,"tag":79,"props":6155,"children":6156},{},[6157,6162],{"type":47,"tag":62,"props":6158,"children":6159},{},[6160],{"type":53,"value":6161},"Before\u002Fafter for every interaction",{"type":53,"value":6163}," — snapshot, act, snapshot, compare",{"type":47,"tag":79,"props":6165,"children":6166},{},[6167,6172,6173,6179,6181],{"type":47,"tag":62,"props":6168,"children":6169},{},[6170],{"type":53,"value":6171},"Screenshot every failure",{"type":53,"value":5998},{"type":47,"tag":299,"props":6174,"children":6176},{"className":6175},[],[6177],{"type":53,"value":6178},"browse screenshot",{"type":53,"value":6180}," immediately on STEP_FAIL, save to ",{"type":47,"tag":299,"props":6182,"children":6184},{"className":6183},[],[6185],{"type":53,"value":6186},".context\u002Fui-test-screenshots\u002F\u003Cstep-id>.png",{"type":47,"tag":79,"props":6188,"children":6189},{},[6190,6195],{"type":47,"tag":62,"props":6191,"children":6192},{},[6193],{"type":53,"value":6194},"Deterministic checks first",{"type":53,"value":6196}," — axe-core, console errors, form labels before visual judgment",{"type":47,"tag":79,"props":6198,"children":6199},{},[6200,6205,6207,6212,6213,6218,6220,6226],{"type":47,"tag":62,"props":6201,"children":6202},{},[6203],{"type":53,"value":6204},"For localhost, start with clean local mode",{"type":53,"value":6206}," — pass ",{"type":47,"tag":299,"props":6208,"children":6210},{"className":6209},[],[6211],{"type":53,"value":1488},{"type":53,"value":1490},{"type":47,"tag":299,"props":6214,"children":6216},{"className":6215},[],[6217],{"type":53,"value":1496},{"type":53,"value":6219}," for reproducible runs; use ",{"type":47,"tag":299,"props":6221,"children":6223},{"className":6222},[],[6224],{"type":53,"value":6225},"--auto-connect",{"type":53,"value":6227}," only when existing local state is required",{"type":47,"tag":79,"props":6229,"children":6230},{},[6231,6242],{"type":47,"tag":62,"props":6232,"children":6233},{},[6234,6235,6240],{"type":53,"value":3286},{"type":47,"tag":299,"props":6236,"children":6238},{"className":6237},[],[6239],{"type":53,"value":3292},{"type":53,"value":6241}," when done",{"type":53,"value":6243}," — for parallel runs, stop every named session",{"type":47,"tag":79,"props":6245,"children":6246},{},[6247,6252],{"type":47,"tag":62,"props":6248,"children":6249},{},[6250],{"type":53,"value":6251},"Report failures with reproduction steps",{"type":53,"value":6253}," — action, expected, actual, screenshot path, suggestion",{"type":47,"tag":79,"props":6255,"children":6256},{},[6257,6262],{"type":47,"tag":62,"props":6258,"children":6259},{},[6260],{"type":53,"value":6261},"Parallelize independent tests",{"type":53,"value":6263}," — use Workflow C with named sessions when testing multiple pages or categories on a deployed site",{"type":47,"tag":110,"props":6265,"children":6267},{"id":6266},"troubleshooting",[6268],{"type":53,"value":6269},"Troubleshooting",{"type":47,"tag":75,"props":6271,"children":6272},{},[6273,6296,6313,6351,6367,6391,6408,6431,6455],{"type":47,"tag":79,"props":6274,"children":6275},{},[6276,6281,6283,6288,6290],{"type":47,"tag":62,"props":6277,"children":6278},{},[6279],{"type":53,"value":6280},"\"No active page\"",{"type":53,"value":6282},": ",{"type":47,"tag":299,"props":6284,"children":6286},{"className":6285},[],[6287],{"type":53,"value":3292},{"type":53,"value":6289},", retry. For zombies: ",{"type":47,"tag":299,"props":6291,"children":6293},{"className":6292},[],[6294],{"type":53,"value":6295},"pkill -f \"browse.*daemon\"",{"type":47,"tag":79,"props":6297,"children":6298},{},[6299,6304,6305,6311],{"type":47,"tag":62,"props":6300,"children":6301},{},[6302],{"type":53,"value":6303},"Dev server not responding",{"type":53,"value":6282},{"type":47,"tag":299,"props":6306,"children":6308},{"className":6307},[],[6309],{"type":53,"value":6310},"curl http:\u002F\u002Flocalhost:\u003Cport>",{"type":53,"value":6312}," — ask user to start it",{"type":47,"tag":79,"props":6314,"children":6315},{},[6316,6334,6336,6342,6344,6349],{"type":47,"tag":62,"props":6317,"children":6318},{},[6319,6324,6326,6332],{"type":47,"tag":299,"props":6320,"children":6322},{"className":6321},[],[6323],{"type":53,"value":869},{"type":53,"value":6325}," with ",{"type":47,"tag":299,"props":6327,"children":6329},{"className":6328},[],[6330],{"type":53,"value":6331},"await",{"type":53,"value":6333}," fails",{"type":53,"value":6335},": Use ",{"type":47,"tag":299,"props":6337,"children":6339},{"className":6338},[],[6340],{"type":53,"value":6341},".then()",{"type":53,"value":6343}," instead — ",{"type":47,"tag":299,"props":6345,"children":6347},{"className":6346},[],[6348],{"type":53,"value":869},{"type":53,"value":6350}," doesn't support top-level await",{"type":47,"tag":79,"props":6352,"children":6353},{},[6354,6359,6360,6365],{"type":47,"tag":62,"props":6355,"children":6356},{},[6357],{"type":53,"value":6358},"Element ref not found",{"type":53,"value":6282},{"type":47,"tag":299,"props":6361,"children":6363},{"className":6362},[],[6364],{"type":53,"value":2949},{"type":53,"value":6366}," again — refs change on page update",{"type":47,"tag":79,"props":6368,"children":6369},{},[6370,6375,6376,6382,6383,6389],{"type":47,"tag":62,"props":6371,"children":6372},{},[6373],{"type":53,"value":6374},"Blank snapshot",{"type":53,"value":6282},{"type":47,"tag":299,"props":6377,"children":6379},{"className":6378},[],[6380],{"type":53,"value":6381},"browse wait load",{"type":53,"value":1475},{"type":47,"tag":299,"props":6384,"children":6386},{"className":6385},[],[6387],{"type":53,"value":6388},"browse wait selector \".expected\"",{"type":53,"value":6390}," before snapshotting",{"type":47,"tag":79,"props":6392,"children":6393},{},[6394,6399,6401,6406],{"type":47,"tag":62,"props":6395,"children":6396},{},[6397],{"type":53,"value":6398},"SPA deep links 404",{"type":53,"value":6400},": Navigate to ",{"type":47,"tag":299,"props":6402,"children":6404},{"className":6403},[],[6405],{"type":53,"value":2437},{"type":53,"value":6407}," first, then click through",{"type":47,"tag":79,"props":6409,"children":6410},{},[6411,6416,6418,6424,6426],{"type":47,"tag":62,"props":6412,"children":6413},{},[6414],{"type":53,"value":6415},"Remote auth fails",{"type":53,"value":6417},": Re-run cookie-sync with ",{"type":47,"tag":299,"props":6419,"children":6421},{"className":6420},[],[6422],{"type":53,"value":6423},"--context \u003Cid>",{"type":53,"value":6425},", try ",{"type":47,"tag":299,"props":6427,"children":6429},{"className":6428},[],[6430],{"type":53,"value":1918},{"type":47,"tag":79,"props":6432,"children":6433},{},[6434,6439,6441,6446,6448,6453],{"type":47,"tag":62,"props":6435,"children":6436},{},[6437],{"type":53,"value":6438},"Parallel session conflicts",{"type":53,"value":6440},": Ensure every ",{"type":47,"tag":299,"props":6442,"children":6444},{"className":6443},[],[6445],{"type":53,"value":314},{"type":53,"value":6447}," command uses ",{"type":47,"tag":299,"props":6449,"children":6451},{"className":6450},[],[6452],{"type":53,"value":5752},{"type":53,"value":6454}," — without it, commands go to the default session",{"type":47,"tag":79,"props":6456,"children":6457},{},[6458,6463,6464,6470,6472],{"type":47,"tag":62,"props":6459,"children":6460},{},[6461],{"type":53,"value":6462},"Session not stopping",{"type":53,"value":6282},{"type":47,"tag":299,"props":6465,"children":6467},{"className":6466},[],[6468],{"type":53,"value":6469},"BROWSE_SESSION=\u003Cname> browse stop",{"type":53,"value":6471},". For zombies: ",{"type":47,"tag":299,"props":6473,"children":6475},{"className":6474},[],[6476],{"type":53,"value":6477},"pkill -f \"browse.*\u003Cname>.*daemon\"",{"type":47,"tag":6479,"props":6480,"children":6481},"style",{},[6482],{"type":53,"value":6483},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":6485,"total":1091},[6486,6509,6522,6534,6552,6567,6585],{"slug":6487,"name":6487,"fn":6488,"description":6489,"org":6490,"tags":6491,"stars":26,"repoUrl":27,"updatedAt":6508},"agent-experience","audit developer experience with AI agents","Audit the developer experience of a product, SDK, docs site, or SKILL.md by dropping multiple Claude subagents at it with only a tiny task prompt and real tools (WebFetch, Bash, Write). Agents must discover the docs themselves, install deps, ask for credentials if needed, and attempt real execution. The skill captures each agent's trace — tool calls, retries, wall time, errors — and scores on Setup Friction, Speed, Efficiency, Error Recovery, and Doc Quality, then emits an HTML report with an A–F grade and concrete fixes. Use when the user asks to audit agent experience, test a skill, audit docs for agents, check if a SDK is agent-friendly, validate a SKILL.md, measure agent DX, or benchmark how painful onboarding is for an AI agent. Triggers: 'audit agent experience', 'test this skill', 'audit docs for agents', 'is my SDK agent-friendly', 'run a DX audit', 'agent experience test', 'test my docs', 'how do agents do with my product'.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[6492,6495,6498,6499,6502,6505],{"name":6493,"slug":6494,"type":15},"Agents","agents",{"name":6496,"slug":6497,"type":15},"Audit","audit",{"name":9,"slug":8,"type":15},{"name":6500,"slug":6501,"type":15},"Engineering","engineering",{"name":6503,"slug":6504,"type":15},"Multi-Agent","multi-agent",{"name":6506,"slug":6507,"type":15},"QA","qa","2026-05-29T06:58:56.259807",{"slug":6510,"name":6510,"fn":6511,"description":6512,"org":6513,"tags":6514,"stars":26,"repoUrl":27,"updatedAt":6521},"autobrowse","run self-improving browser automation","Self-improving browser automation via the auto-research loop. Iteratively runs a browsing task, reads the trace, and improves the navigation skill (strategy.md) until it reliably passes. Supports parallel runs across multiple tasks using sub-agents. Use when you want to build or improve browser automation skills for specific website tasks.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[6515,6516,6519,6520],{"name":6493,"slug":6494,"type":15},{"name":6517,"slug":6518,"type":15},"Automation","automation",{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},"2026-04-23T05:00:30.528336",{"slug":6523,"name":6523,"fn":6524,"description":6525,"org":6526,"tags":6527,"stars":26,"repoUrl":27,"updatedAt":6533},"browser","automate browser interactions via CLI","Automate web browser interactions using natural language via CLI commands. Use when the user asks to browse websites, navigate web pages, extract data from websites, take screenshots, fill forms, click buttons, or interact with web applications. Supports remote Browserbase sessions with Browserbase Identity, Verified browsers, automatic CAPTCHA solving, and residential proxies — ideal for protected websites and JavaScript-heavy pages.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[6528,6529,6530],{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},{"name":6531,"slug":6532,"type":15},"CLI","cli","2026-04-06T18:06:22.005051",{"slug":6535,"name":6535,"fn":6536,"description":6537,"org":6538,"tags":6539,"stars":26,"repoUrl":27,"updatedAt":6551},"browser-to-api","generate OpenAPI specs from browser traffic","Turn a website's observable HTTP traffic into a best-effort OpenAPI 3.1 spec by analyzing a `browser-trace` capture. Use when the user wants to discover\u002Fextract API endpoints from a browser session, build an OpenAPI doc from network traffic, or document a third-party site's XHR\u002Ffetch surface for client integration.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[6540,6543,6544,6545,6548],{"name":6541,"slug":6542,"type":15},"API Development","api-development",{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},{"name":6546,"slug":6547,"type":15},"HTTP","http",{"name":6549,"slug":6550,"type":15},"OpenAPI","openapi","2026-05-14T06:07:27.298495",{"slug":6553,"name":6553,"fn":6554,"description":6555,"org":6556,"tags":6557,"stars":26,"repoUrl":27,"updatedAt":6566},"browser-trace","capture and debug browser automation traces","Capture a full DevTools-protocol trace of any browser automation — CDP firehose, screenshots, and DOM dumps — then bisect the stream into per-page searchable buckets. Use when the user wants to debug a failed run, audit network\u002Fconsole\u002FDOM activity, attach a trace to an in-progress session, or feed structured per-page summaries back into an agent loop so its next iteration learns from the last one.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[6558,6559,6560,6563],{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},{"name":6561,"slug":6562,"type":15},"Debugging","debugging",{"name":6564,"slug":6565,"type":15},"Observability","observability","2026-04-28T05:41:33.024656",{"slug":6568,"name":6568,"fn":6569,"description":6570,"org":6571,"tags":6572,"stars":26,"repoUrl":27,"updatedAt":6584},"browser-use-to-stagehand","migrate browser-use scripts to Stagehand","Migrate browser-use (Python) browser-automation scripts to Stagehand v3 (TypeScript) on Browserbase. Use when the user wants to convert, port, rewrite, or migrate a browser-use Agent script to Stagehand, map browser-use features\u002FAPIs to Stagehand primitives (act\u002Fextract\u002Fobserve\u002Fagent), or move agentic browser automation onto Browserbase with more determinism. Triggers on \"browser-use\", \"browser_use\", or \"Agent(task=...)\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[6573,6574,6575,6578,6581],{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},{"name":6576,"slug":6577,"type":15},"Migration","migration",{"name":6579,"slug":6580,"type":15},"Python","python",{"name":6582,"slug":6583,"type":15},"TypeScript","typescript","2026-06-26T07:57:47.428249",{"slug":6586,"name":6586,"fn":6587,"description":6588,"org":6589,"tags":6590,"stars":26,"repoUrl":27,"updatedAt":6604},"company-research","conduct deep company and product research","Company discovery and deep research skill. Researches a company's product and ICP,\ndiscovers target companies to sell to using Browserbase Search API, deeply researches\neach using a Plan→Research→Synthesize pattern, and scores ICP fit — compiled into\na scored research report and CSV. Supports depth modes (quick\u002Fdeep\u002Fdeeper) for\nbalancing scale vs intelligence.\nUse when the user wants to: (1) find companies to sell to, (2) research potential\ncustomers, (3) discover companies matching an ICP, (4) build a target company list,\n(5) do market research on prospects. Triggers: \"find companies to sell to\",\n\"company research\", \"find prospects\", \"ICP research\", \"target companies\",\n\"who should we sell to\", \"market research\", \"lead research\", \"prospect list\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[6591,6592,6595,6598,6601],{"name":9,"slug":8,"type":15},{"name":6593,"slug":6594,"type":15},"Competitive Intelligence","competitive-intelligence",{"name":6596,"slug":6597,"type":15},"Marketing","marketing",{"name":6599,"slug":6600,"type":15},"Research","research",{"name":6602,"slug":6603,"type":15},"Sales","sales","2026-04-27T05:34:56.172569",{"items":6606,"total":3234},[6607,6618,6627,6634,6640,6648,6655,6663,6671,6685,6696,6709],{"slug":314,"name":314,"fn":6608,"description":6609,"org":6610,"tags":6611,"stars":6615,"repoUrl":6616,"updatedAt":6617},"run Browserbase browser automation","Use the browse CLI for Browserbase browser automation, Browserbase cloud APIs, Browserbase Functions, templates, web fetch\u002Fsearch, diagnostics, and Browse.sh skill discovery\u002Finstallation. Use when the user asks to navigate pages, inspect browser state, run local or remote browser sessions, manage Browserbase resources, call Browserbase Functions, browse or scaffold Browserbase templates, fetch or search web content, diagnose browse setup, find or install a skill for a website task, discover site-specific Browse.sh skills, or install\u002Frefresh this browse skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[6612,6613,6614],{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},{"name":6531,"slug":6532,"type":15},23676,"https:\u002F\u002Fgithub.com\u002Fbrowserbase\u002Fstagehand","2026-06-06T07:11:24.95733",{"slug":6487,"name":6487,"fn":6488,"description":6489,"org":6619,"tags":6620,"stars":26,"repoUrl":27,"updatedAt":6508},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[6621,6622,6623,6624,6625,6626],{"name":6493,"slug":6494,"type":15},{"name":6496,"slug":6497,"type":15},{"name":9,"slug":8,"type":15},{"name":6500,"slug":6501,"type":15},{"name":6503,"slug":6504,"type":15},{"name":6506,"slug":6507,"type":15},{"slug":6510,"name":6510,"fn":6511,"description":6512,"org":6628,"tags":6629,"stars":26,"repoUrl":27,"updatedAt":6521},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[6630,6631,6632,6633],{"name":6493,"slug":6494,"type":15},{"name":6517,"slug":6518,"type":15},{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},{"slug":6523,"name":6523,"fn":6524,"description":6525,"org":6635,"tags":6636,"stars":26,"repoUrl":27,"updatedAt":6533},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[6637,6638,6639],{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},{"name":6531,"slug":6532,"type":15},{"slug":6535,"name":6535,"fn":6536,"description":6537,"org":6641,"tags":6642,"stars":26,"repoUrl":27,"updatedAt":6551},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[6643,6644,6645,6646,6647],{"name":6541,"slug":6542,"type":15},{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},{"name":6546,"slug":6547,"type":15},{"name":6549,"slug":6550,"type":15},{"slug":6553,"name":6553,"fn":6554,"description":6555,"org":6649,"tags":6650,"stars":26,"repoUrl":27,"updatedAt":6566},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[6651,6652,6653,6654],{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},{"name":6561,"slug":6562,"type":15},{"name":6564,"slug":6565,"type":15},{"slug":6568,"name":6568,"fn":6569,"description":6570,"org":6656,"tags":6657,"stars":26,"repoUrl":27,"updatedAt":6584},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[6658,6659,6660,6661,6662],{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},{"name":6576,"slug":6577,"type":15},{"name":6579,"slug":6580,"type":15},{"name":6582,"slug":6583,"type":15},{"slug":6586,"name":6586,"fn":6587,"description":6588,"org":6664,"tags":6665,"stars":26,"repoUrl":27,"updatedAt":6604},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[6666,6667,6668,6669,6670],{"name":9,"slug":8,"type":15},{"name":6593,"slug":6594,"type":15},{"name":6596,"slug":6597,"type":15},{"name":6599,"slug":6600,"type":15},{"name":6602,"slug":6603,"type":15},{"slug":6672,"name":6672,"fn":6673,"description":6674,"org":6675,"tags":6676,"stars":26,"repoUrl":27,"updatedAt":6684},"competitor-analysis","analyze competitors across features and pricing","Competitor research and intelligence skill. Takes a user's company (with optional\nseed competitor URLs), auto-discovers additional competitors via Browserbase Search API,\ndeeply researches each using a 4-lane pattern (marketing surface, external signal,\npublic benchmarks, strategic diff vs the user's company), and compiles the results\ninto an HTML report with four views: overview, per-competitor deep dive, side-by-side\nfeature\u002Fpricing matrix, and a chronological mentions feed (news, reviews,\nsocial, comparison pages, and public benchmarks).\nUse when the user wants to: (1) analyze competitors, (2) build a competitive matrix,\n(3) extract competitor pricing \u002F features, (4) find comparison pages and online\nmentions of competitors, (5) surface public benchmarks. Triggers: \"competitor analysis\",\n\"analyze competitors\", \"competitive intel\", \"competitor research\", \"competitor pricing\",\n\"feature comparison\", \"price comparison\", \"find comparisons\", \"who's comparing us\",\n\"competitor mentions\", \"competitor benchmarks\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[6677,6678,6679,6680,6681],{"name":9,"slug":8,"type":15},{"name":6593,"slug":6594,"type":15},{"name":6596,"slug":6597,"type":15},{"name":6599,"slug":6600,"type":15},{"name":6682,"slug":6683,"type":15},"Strategy","strategy","2026-06-19T09:41:33.392499",{"slug":6686,"name":6686,"fn":6687,"description":6688,"org":6689,"tags":6690,"stars":26,"repoUrl":27,"updatedAt":6695},"cookie-sync","sync Chrome cookies to a Browserbase context","Sync cookies from local Chrome to a Browserbase persistent context so the browse CLI can access authenticated sites. Use when the user wants to browse as themselves, sync cookies, or log into sites via Browserbase.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[6691,6693,6694],{"name":1389,"slug":6692,"type":15},"auth",{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},"2026-04-06T18:06:23.3251",{"slug":6697,"name":6697,"fn":6698,"description":6699,"org":6700,"tags":6701,"stars":26,"repoUrl":27,"updatedAt":6708},"event-prospecting","research event speakers for sales prospecting","Event prospecting skill. Takes a conference \u002F event speakers URL,\nextracts the people, filters their companies against the user's\nICP, then deep-researches only the speakers at ICP-fit companies.\nOutputs a person-first HTML report where each card answers \"why\nshould the AE talk to this person?\" with all public links and a\none-click DM opener.\nUse when the user wants to: (1) find leads at a specific\nconference, (2) prep for an event, (3) research event speakers,\n(4) build a target list from a sponsor\u002Fexhibitor page,\n(5) scrape conference speakers and rank by ICP fit.\nTriggers: \"find leads at {event}\", \"research speakers at\",\n\"prospect this conference\", \"stripe sessions leads\",\n\"ai engineer summit prospects\", \"event prospecting\",\n\"scrape conference speakers\", \"who should I meet at\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[6702,6703,6706,6707],{"name":9,"slug":8,"type":15},{"name":6704,"slug":6705,"type":15},"Prospecting","prospecting",{"name":6599,"slug":6600,"type":15},{"name":6602,"slug":6603,"type":15},"2026-04-28T05:41:31.770467",{"slug":6710,"name":6710,"fn":6711,"description":6712,"org":6713,"tags":6714,"stars":26,"repoUrl":27,"updatedAt":6719},"fetch","fetch URLs without a browser session","Use this skill when the user wants to retrieve a URL without a full browser session: fetch HTML or JSON from static pages, inspect status codes or headers, follow redirects, or get page source for simple scraping. Prefer it over a browser when JavaScript rendering and page interaction are not needed. Supports proxies and redirect control.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[6715,6716],{"name":6546,"slug":6547,"type":15},{"name":6717,"slug":6718,"type":15},"Web Scraping","web-scraping","2026-04-06T18:06:19.462477"]