Audit live websites using Playwright MCP for browser-based QA. Covers accessibility snapshots, screenshot verification, interactive element testing, and tier differentiation audits. Use after deploying web changes to verify they work. Tags: webtricks, QA, testing, playwright, audit.
インストール
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
Audit live websites using Playwright MCP for browser-based QA. Covers accessibility snapshots, screenshot verification, interactive element testing, and tier differentiation audits. Use after deploying web changes to verify they work. Tags: webtricks, QA, testing, playwright, audit.
Browser-Based QA Audit — WebTricks
Use Playwright MCP to audit live deployed websites. Verify interactive elements work, content is correct, animations render, and tier differentiation functions properly.
When to Apply
After deploying changes to a live website
When the user says something "doesn't work" or "is broken"
Before presenting a site to a client
When auditing tier/pricing functionality across multiple pages
Audit Protocol
Step 1: Full Slide/Page Audit
Navigate to the site and check EVERY page/slide systematically:
browser_navigate({ url: "https://site.vercel.app" })
browser_take_screenshot → Landing page
browser_snapshot → Get accessibility tree
// Navigate through all pages
browser_press_key({ key: "ArrowRight" }) // Next slide
browser_take_screenshot
browser_snapshot
// ... repeat for all pages
Step 2: Interactive Element Verification
For each page, check:
Are interactive elements real? Check the accessibility tree for <button> vs <span>:
button "Foundation · $5K" = REAL button ✅
text "Foundation $5K: 1 week" with cursor: auto = FAKE, decorative ❌
Do buttons respond to clicks?
browser_click({ ref: "eXX", element: "Foundation tier button" })
browser_snapshot → Did the content change?