Blog Post
WCAG Compliance Checker: What Automated Tools Miss (And How to Actually Get Compliant)
Last updated: April 22, 2026
A WCAG compliance checker evaluates web pages against the Web Content Accessibility Guidelines. Automated checkers catch 30-40% of WCAG issues. Full compliance requires layering automated scanning with design QA review and manual assistive technology testing. This guide covers how checkers work, what they miss, and how to build a compliance workflow.
What Is a WCAG Compliance Checker?
A WCAG compliance checker is software that evaluates web pages against the Web Content Accessibility Guidelines. These guidelines define success criteria across four principles: Perceivable, Operable, Understandable, and Robust. Most regulations reference WCAG 2.1 Level AA as the standard. WCAG 2.2, published October 2023, adds nine new criteria and is fully backward-compatible.
The 30-40% Detection Ceiling
The UK Government Digital Service found that automated scanners catch only 30-40% of known WCAG issues. Automated tools reliably catch missing alt text, insufficient contrast ratios, empty buttons and links, missing form labels, and missing document language. They miss contrast in context, focus indicator quality, touch target sizing, meaningful reading order, keyboard traps, ARIA pattern completeness, and content on hover or focus.
Best WCAG Compliance Checkers Compared (2026)
Tools compared: axe DevTools (Deque), WAVE (WebAIM), Google Lighthouse, Pa11y, Siteimprove, Microsoft Accessibility Insights, and OverlayQA across automated scanning, design QA, and AI visual analysis layers.
What WCAG 2.2 Changed
WCAG 2.2 added nine new success criteria: Focus Not Obscured (2.4.11), Dragging Movements (2.5.7), Target Size Minimum (2.5.8), Consistent Help (3.2.6), Redundant Entry (3.3.7), and Accessible Authentication (3.3.8). Most new criteria require human judgment and cannot be fully automated.
The Six Most Common WCAG Violations
The 2026 WebAIM Million found six violations account for 96% of detected errors: low contrast text (83.9%), missing alt text (53.1%), missing form labels (51.0%), empty links (46.3%), empty buttons (30.6%), and missing document language (13.5%). 95.9% of the top million websites had detectable failures.
Beyond Automated Checking: Three Layers of Compliance
Layer 1: Automated Scanning
Run axe-core, WAVE, or Lighthouse on every page. Integrate into CI/CD. Catches structural violations at scale.
Layer 2: Design QA and Visual Accessibility Review
Catches visual accessibility issues automated tools miss: contrast against complex backgrounds, focus indicator visibility, touch target sizing, and whether accessible design survived implementation. OverlayQA fills this layer by combining axe-core scanning, keyboard testing, and AI visual analysis in a single audit.
Layer 3: Manual Testing with Assistive Technology
Screen reader testing, keyboard-only navigation, and screen magnification validate that the experience works for people with disabilities.
The Cost of Skipping WCAG Compliance
3,117 federal web accessibility lawsuits filed in 2025, up 27% from 2024. Average settlements: demand letters $5K, out-of-court $30K, court judgments $85K, class actions $400K. 22.6% of lawsuits targeted sites using overlay widgets. The FTC fined accessiBe $1M for false compliance claims.
How to Build a WCAG Compliance Workflow
Every build: automated scan in CI/CD. Every sprint: design QA review. Every release: assistive technology testing. Quarterly: comprehensive WCAG 2.2 AA audit with conformance documentation.
| Tool | Type | Price | Best For | WCAG Coverage |
|---|---|---|---|---|
| axe DevTools (Deque) | Browser extension + CI | Free ext / paid pro | Developers in code workflow | Automated rules only |
| WAVE (WebAIM) | Browser extension + API | Free ext / paid API | Non-technical team members | Automated rules only |
| Google Lighthouse | Built into Chrome | Free | Quick audits during development | Subset of axe-core rules |
| Pa11y | CLI / open source | Free | CI/CD pipeline integration | Automated rules only |
| Siteimprove | Enterprise platform | Quote-based | Full-site governance + VPAT | Automated + guided manual |
| Microsoft Accessibility Insights | Browser extension | Free, open-source | Two-step FastPass + assessment | Automated + guided manual |
| OverlayQA | Browser extension | From $39/mo | Design QA + accessibility audit | Automated + keyboard + AI visual |
| Criterion | Level | What It Requires | Automatable? |
|---|---|---|---|
| 2.4.11 Focus Not Obscured | AA | Focused elements must be at least partially visible, not hidden by sticky headers or modals | Partially |
| 2.5.7 Dragging Movements | AA | All drag functionality must have a single-pointer alternative | No |
| 2.5.8 Target Size (Minimum) | AA | Interactive targets must be 24x24px or have sufficient spacing | Partially |
| 3.2.6 Consistent Help | A | Help mechanisms must appear in the same relative position across pages | No |
| 3.3.7 Redundant Entry | A | Do not ask users to re-enter previously submitted data | No |
| 3.3.8 Accessible Authentication | AA | No cognitive function tests for login unless alternatives exist | No |
| Violation | % of Pages Affected | WCAG Criterion | Trend |
|---|---|---|---|
| Low contrast text | 83.9% | 1.4.3 Minimum Contrast | Up from 79.1% |
| Missing image alt text | 53.1% | 1.1.1 Non-text Content | Down from 55.5% |
| Missing form labels | 51.0% | 1.3.1 Info and Relationships | Up from 48.2% |
| Empty links | 46.3% | 2.4.4 Link Purpose | Up from 45.4% |
| Empty buttons | 30.6% | 4.1.2 Name, Role, Value | Up from 29.6% |
| Missing document language | 13.5% | 3.1.1 Language of Page | Down from 15.8% |
| Resolution Type | Average Cost | Range |
|---|---|---|
| Demand letter settlement | $5,000 | $1K-$25K |
| Out-of-court settlement | $30,000 | $5K-$150K |
| Court judgment | $85,000 | $10K-$500K |
| Class action | $400,000 | $50K-$6M+ |
Frequently Asked Questions
What is the best free WCAG compliance checker?
axe DevTools (browser extension) is the most comprehensive free automated checker. WAVE is a strong alternative for non-technical team members.
Can a WCAG compliance checker guarantee compliance?
No. Automated checkers catch 30-40% of issues. Full compliance requires human evaluation of visual presentation, interaction quality, and assistive technology compatibility.
What is the difference between WCAG 2.1 and 2.2?
WCAG 2.2 adds nine new success criteria covering focus visibility, target sizing, dragging alternatives, and cognitive accessibility. It is fully backward-compatible with 2.1.
How often should I run WCAG compliance checks?
Automated scans on every build. Design QA review every sprint. Assistive technology testing every release. Comprehensive audit quarterly.
Do overlay widgets count as WCAG compliance?
No. Overlays modify presentation without fixing underlying markup. 22.6% of 2025 lawsuits targeted sites using overlays.