What problem does it solve? Writing and maintaining Playwright test suites involves many decisions — locator strategies, waiting patterns, mocking boundaries, CI configuration — and getting them wrong leads to flaky, slow, or brittle tests. This Skill gives an AI coding agent 69 production-tested guides so it can write, debug, and scale Playwright tests using proven patterns instead of guesswork. ## Core Features & Use Cases - Test Writing Guidance: Covers locators, web-first assertions, fixtures, authentication, network mocking, visual regression, accessibility, and component testing with TypeScript and JavaScript examples. - CI/CD and CLI Automation: Includes pipeline configs for GitHub Actions, GitLab, Docker, and sharding, plus terminal-driven browser automation via playwright-cli for navigation, screenshots, tracing, and test generation. - Migration and Architecture Decisions: Provides Cypress and Selenium migration paths plus decision guides like POM vs fixtures vs helpers and mock vs real services. - Use Case: Ask the agent to fix a flaky login test, and it pulls the flaky-tests and authentication guides to apply web-first assertions, storage state reuse, and proper retry configuration. ## Quick Start Ask the agent to write a Playwright test for your login flow using getByRole locators and web-first assertions.