What problem does it solve? Web accessibility defects like missing labels, broken keyboard navigation, and poor color contrast often ship undetected because manual audits are slow and inconsistent. This Skill provides ready-to-use Playwright and axe-core test patterns that catch WCAG 2.1 Level AA violations automatically and integrate into CI pipelines. ## Core Features & Use Cases - Automated axe-core scans: Run full-page or component-scoped accessibility audits tagged for WCAG 2.1 A/AA rules, with scoped exception handling for known issues. - Keyboard and focus testing: Validate Tab order, focus traps in dialogs, skip links, and focus return behavior using Playwright keyboard APIs. - Semantic and ARIA validation: Use role-based locators as accessibility signals and verify landmarks, form labels, and accessible names. - Use Case: A QA engineer adds an axe-core scan to the checkout flow test suite, catches a missing form label and insufficient color contrast, and blocks the release until the WCAG violations are fixed. ## Quick Start Write a Playwright accessibility test that scans my login page with axe-core for WCAG 2.1 AA violations and verifies keyboard navigation through the form.