Design System Problems

Axe Accessibility Testing

January 15, 2026 • 5 min read

Axe Accessibility Testing

Axe accessibility testing uses the axe-core library and related tools to identify accessibility issues in web interfaces. Axe has become an industry standard for automated accessibility testing with broad integration support.

What Is Axe Accessibility Testing

Axe is an accessibility testing engine created by Deque Systems. The core library (axe-core) powers various implementations: browser extensions, testing framework integrations, and CI/CD tools.

Axe tests for WCAG compliance issues including:

Axe rules are carefully maintained to minimize false positives while catching genuine issues. Each rule maps to specific WCAG success criteria.

How Axe Accessibility Testing Works

axe-core library integrates with testing frameworks. Install the library and run checks against rendered HTML:

axe DevTools browser extension provides manual testing capability. Open DevTools, navigate to the axe panel, and scan the current page. Issues appear with descriptions, impact levels, and remediation guidance.

@axe-core/react integrates with React testing approaches, providing React-specific testing utilities.

jest-axe simplifies Jest integration with custom matchers:

axe CI/CD integration runs checks in continuous integration pipelines. Configure rules, impact levels, and failure thresholds:

Results include detailed information: which elements fail, what rule they violate, why it matters, and how to fix it.

Key Considerations

Common Questions

What does axe catch versus miss?

Axe catches approximately 30-40% of accessibility issues, specifically those that can be determined programmatically:

Axe cannot determine whether content makes sense, keyboard focus order is logical, or screen reader experience is good. Manual testing addresses these.

How should axe impact levels be prioritized?

Axe categorizes issues by impact: critical, serious, moderate, and minor. Address critical and serious issues first as these most significantly affect users.

CI/CD configurations often fail on critical and serious while warning on moderate and minor. However, all issues should eventually be addressed.

Can axe be customized for design systems?

Axe supports custom rules and configuration. Design systems might:

Configuration files can standardize axe setup across projects using the design system.

Summary

Axe accessibility testing provides industry-standard automated checking through axe-core library integration, browser extensions, and CI/CD tools. While axe catches many accessibility issues with low false positives, manual testing remains necessary for issues requiring human judgment.

Buoy scans your codebase for design system inconsistencies before they ship

Detect Design Drift Free
← Back to Accessibility Compliance