E2E-тестирование с Playwright
★ 7.5 · general
e2e-testing is a Claude Code skill that teaches writing end-to-end tests with Playwright using established patterns: Page Object Model, auth state reuse via storageState, and API mocking through page.route(). The skill ships with a ready-made playwright.config.ts that runs tests in parallel across Chromium, Firefox, and Mobile Safari (iPhone 13), configures a webServer, and captures screenshots only on failure. CLI commands cover every mode — default, headed, interactive UI, and HTML report. Built-in rules prohibit waitForTimeout() and raw CSS selectors in test bodies, and enforce limiting E2E coverage to critical user paths while keeping business logic in unit tests. Ideal for developers setting up browser automation for login flows, navigation, and form interactions.