playwright-testing
Installation
SKILL.md
Playwright Testing
Write reliable, fast, maintainable Playwright tests for SPAs.
Contents
- Core Concepts (Locators, Waiting, Assertions)
- Test Structure → See reference/structure.md
- Performance → See reference/performance.md
- Debugging → See reference/debugging.md
- CI Configuration → See reference/ci.md
Core principle: Test what users see and do. If a user can't find an element by its role or text, neither should your test.
Quality layers: Reliable (no flakes) → Fast (parallel, minimal waits) → Maintainable (survives refactors)
Philosophy: User-centric locators by default. Implementation details (test-ids, CSS selectors) are escape hatches, not first choices.