web-testing-playwright-e2e
Installation
SKILL.md
Playwright E2E Testing Patterns
Quick Guide: Playwright drives a real browser through complete user journeys. Locators are lazy queries re-resolved on every use and
expect(locator)matchers retry until they pass, so a correct test needs no sleeps and no stale-handle handling. Each test gets its own browser context; shared setup arrives through fixtures rather than module-level variables, because tests run in parallel workers.
Detailed Resources: