Playwright Pro
Production-grade Playwright testing toolkit for AI coding agents.
Available Commands
When installed as a Claude Code plugin, these are available as /pw: commands:
| Command |
What it does |
/pw:init |
Set up Playwright — detects framework, generates config, CI, first test |
/pw:generate <spec> |
Generate tests from user story, URL, or component |
/pw:review |
Review tests for anti-patterns and coverage gaps |
/pw:fix <test> |
Diagnose and fix failing or flaky tests |
/pw:migrate |
Migrate from Cypress or Selenium to Playwright |
/pw:coverage |
Analyze what's tested vs. what's missing |
/pw:testrail |
Sync with TestRail — read cases, push results |
/pw:browserstack |
Run on BrowserStack, pull cross-browser reports |
/pw:report |
Generate test report in your preferred format |
Golden Rules
getByRole() over CSS/XPath — resilient to markup changes
- Never
page.waitForTimeout() — use web-first assertions
expect(locator) auto-retries; expect(await locator.textContent()) does not
- Isolate every test — no shared state between tests
baseURL in config — zero hardcoded URLs
- Retries:
2 in CI, 0 locally
- Traces:
'on-first-retry' — rich debugging without slowdown
- Fixtures over globals —
test.extend() for shared state
- One behavior per test — multiple related assertions are fine
- Mock external services only — never mock your own app
Locator Priority
1. getByRole() — buttons, links, headings, form elements
2. getByLabel() — form fields with labels
3. getByText() — non-interactive text
4. getByPlaceholder() — inputs with placeholder
5. getByTestId() — when no semantic option exists
6. page.locator() — CSS/XPath as last resort
What's Included
- 9 skills with detailed step-by-step instructions
- 3 specialized agents: test-architect, test-debugger, migration-planner
- 55 test templates: auth, CRUD, checkout, search, forms, dashboard, settings, onboarding, notifications, API, accessibility
- 2 MCP servers (TypeScript): TestRail and BrowserStack integrations
- Smart hooks: auto-validate test quality, auto-detect Playwright projects
- 6 reference docs: golden rules, locators, assertions, fixtures, pitfalls, flaky tests
- Migration guides: Cypress and Selenium mapping tables
Integration Setup
TestRail (Optional)
export TESTRAIL_URL="https://your-instance.testrail.io"
export TESTRAIL_USER="your@email.com"
export TESTRAIL_API_KEY="your-api-key"
BrowserStack (Optional)
export BROWSERSTACK_USERNAME="your-username"
export BROWSERSTACK_ACCESS_KEY="your-access-key"
Quick Reference
See reference/ directory for:
golden-rules.md — The 10 non-negotiable rules
locators.md — Complete locator priority with cheat sheet
assertions.md — Web-first assertions reference
fixtures.md — Custom fixtures and storageState patterns
common-pitfalls.md — Top 10 mistakes and fixes
flaky-tests.md — Diagnosis commands and quick fixes
See templates/README.md for the full template index.
1---2name: playwright-pro3description: Production-grade Playwright testing toolkit. Generate tests, fix flaky failures, migrate from Cypress/Selenium, sync with TestRail, run on BrowserStack. 55 templates, 3 agents, smart reporting.4---56# Playwright Pro78Production-grade Playwright testing toolkit for AI coding agents.910## Available Commands1112When installed as a Claude Code plugin, these are available as `/pw:` commands:1314| Command | What it does |15|---|---|16| `/pw:init` | Set up Playwright — detects framework, generates config, CI, first test |17| `/pw:generate <spec>` | Generate tests from user story, URL, or component |18| `/pw:review` | Review tests for anti-patterns and coverage gaps |19| `/pw:fix <test>` | Diagnose and fix failing or flaky tests |20| `/pw:migrate` | Migrate from Cypress or Selenium to Playwright |21| `/pw:coverage` | Analyze what's tested vs. what's missing |22| `/pw:testrail` | Sync with TestRail — read cases, push results |23| `/pw:browserstack` | Run on BrowserStack, pull cross-browser reports |24| `/pw:report` | Generate test report in your preferred format |2526## Golden Rules27281. `getByRole()` over CSS/XPath — resilient to markup changes292. Never `page.waitForTimeout()` — use web-first assertions303. `expect(locator)` auto-retries; `expect(await locator.textContent())` does not314. Isolate every test — no shared state between tests325. `baseURL` in config — zero hardcoded URLs336. Retries: `2` in CI, `0` locally347. Traces: `'on-first-retry'` — rich debugging without slowdown358. Fixtures over globals — `test.extend()` for shared state369. One behavior per test — multiple related assertions are fine3710. Mock external services only — never mock your own app3839## Locator Priority4041```421. getByRole() — buttons, links, headings, form elements432. getByLabel() — form fields with labels443. getByText() — non-interactive text454. getByPlaceholder() — inputs with placeholder465. getByTestId() — when no semantic option exists476. page.locator() — CSS/XPath as last resort48```4950## What's Included5152- **9 skills** with detailed step-by-step instructions53- **3 specialized agents**: test-architect, test-debugger, migration-planner54- **55 test templates**: auth, CRUD, checkout, search, forms, dashboard, settings, onboarding, notifications, API, accessibility55- **2 MCP servers** (TypeScript): TestRail and BrowserStack integrations56- **Smart hooks**: auto-validate test quality, auto-detect Playwright projects57- **6 reference docs**: golden rules, locators, assertions, fixtures, pitfalls, flaky tests58- **Migration guides**: Cypress and Selenium mapping tables5960## Integration Setup6162### TestRail (Optional)63```bash64export TESTRAIL_URL="https://your-instance.testrail.io"65export TESTRAIL_USER="your@email.com"66export TESTRAIL_API_KEY="your-api-key"67```6869### BrowserStack (Optional)70```bash71export BROWSERSTACK_USERNAME="your-username"72export BROWSERSTACK_ACCESS_KEY="your-access-key"73```7475## Quick Reference7677See `reference/` directory for:78- `golden-rules.md` — The 10 non-negotiable rules79- `locators.md` — Complete locator priority with cheat sheet80- `assertions.md` — Web-first assertions reference81- `fixtures.md` — Custom fixtures and storageState patterns82- `common-pitfalls.md` — Top 10 mistakes and fixes83- `flaky-tests.md` — Diagnosis commands and quick fixes8485See `templates/README.md` for the full template index.