Accessibility Testing

Accessibility

// Definition

The discipline of verifying that software meets accessibility standards and can be used by people with disabilities — including users who rely on screen readers, keyboard-only navigation, voice control, switch access, or high-contrast modes. Testing strategy has three layers: automated scanning (axe, Lighthouse, Accessibility Scanner) catches structural issues such as missing labels, poor contrast, and incorrect ARIA roles — roughly 30–40% of all accessibility issues; manual keyboard-only testing validates focus order, interactive element reachability, and visible focus indicators; assistive-technology testing with VoiceOver, NVDA, TalkBack, or JAWS catches the remaining issues that automated tools cannot see. WCAG 2.1 Level AA is the most common legal compliance target. Integrating axe into Playwright or Cypress pipelines provides a regression gate against structural regressions.

// Related terms