Skip to main content

Companion tool

WCAG 2.2 Compliance

Web accessibility assessment for A, AA, and AAA conformance

Use the tool

WCAG 2.2 Compliance Checker Guide: How CTOs Run an Accessibility Audit That Holds Up

May 25, 2026By The CTO12 min read
...
guides

WCAG 2.2 compliance checker guide: how to run a web accessibility assessment that holds up

WCAG 2.2 Compliance Checker Guide: How CTOs Run an Accessibility Audit That Holds Up

WCAG 2.2 compliance checker guide: how to run a web accessibility assessment that holds up

In 2025, 5,114 ADA digital accessibility lawsuits were filed in the US, and eCommerce made up 70 percent of them. WebAIM’s Million study also found 79.1 percent of homepages fail minimum color contrast, and 55.5 percent have missing alt text. That mix of legal pressure and basic execution gaps is why a WCAG 2.2 compliance checker belongs in your release process, not in a dusty “once-a-year audit” calendar invite.

This companion guide explains how to use The Art of CTO WCAG 2.2 Compliance tool as a repeatable program. It covers what to test, how to staff it, and how to turn findings into shipped fixes.

What a WCAG 2.2 compliance checker is, and what “A, AA, AAA” means

WCAG 2.2 is the W3C standard for web accessibility. It defines testable success criteria across three conformance levels. W3C recommends using the latest version, and WCAG 2.2 content stays backwards compatible with WCAG 2.1 and 2.0. In practice, WCAG 2.2 conformance also meets earlier versions, with one exception called out by W3C. WCAG 2.2 marks 4.1.1 Parsing as obsolete in the 2.2 spec notes. See the W3C overview for the version history and compatibility details: W3C WCAG standards and guidelines.

The Art of CTO WCAG 2.2 Compliance tool runs a web accessibility assessment against WCAG 2.2 success criteria at A, AA, and AAA levels. It helps teams turn a vague “make it accessible” request into a concrete backlog.

WCAG also groups criteria under four principles, often called POUR:

  • Perceivable: users can perceive content, like text alternatives and contrast.
  • Operable: users can operate the UI, like keyboard navigation and focus.
  • Understandable: users can understand content and flows, like clear errors.
  • Robust: assistive tech can interpret the UI, like correct roles and names.

UserWay’s overview summarizes POUR and how audits should combine automation and manual testing: WCAG 2.2 principles and guidelines.

If you’re building a customer-facing web app, WCAG 2.2 Level AA is the target I see hold up most often. It’s the common bar in regulations and settlements, and it covers the stuff that blocks real users. A Johns Hopkins WCAG checklist PDF also notes AAA isn’t realistic for every experience, so many orgs pick AA and then add a few AAA criteria where it fits: The Must Have WCAG Checklist PDF.

A practical framing for CTOs: Level A stops the worst blockers, Level AA makes the product usable for most assistive tech users, and Level AAA is a selective upgrade for high risk flows.

How to use a web accessibility assessment tool in a real release cycle

Most CTOs I talk to hit the same wall. They can run a scan. They can even generate a nice report. The report still doesn’t turn into shipped fixes unless someone builds a system around it.

Treat accessibility like reliability work. Keep the scope tight, set a target you can measure, and run it on a cadence.

The “3 Surface Audit” model for Series A and B teams

Use this model to keep the audit bounded and repeatable:

  • Surface 1: Marketing site. Home, pricing, docs, blog, and signup.
  • Surface 2: Auth and onboarding. Login, MFA, password reset, invite flows.
  • Surface 3: Core product paths. The 5 to 10 screens that drive revenue.

Why this model works: lawsuits and demand letters often focus on public pages and purchase or signup flows. It also matches how teams ship. Marketing and auth change often, and core paths carry the most UI complexity.

What the tool can catch fast, and what it can’t

Automated checks catch a lot of high-volume issues. WebAIM’s Million data shows the common ones are basic and repeatable, like contrast, alt text, and labels. But automation won’t catch the user experience failures that actually ruin someone’s day.

Plan for two lanes:

  • Automated lane: run the tool on every release branch, and fail builds on regressions.
  • Manual lane: keyboard-only testing, screen reader spot checks, and form flow reviews.

AudioEye calls out that WCAG 2.2 adds nine success criteria and puts more weight on focus states, cognitive needs, and mobile. It also recommends baking checks into processes and tracking time to remediation: AudioEye lawsuit trends and WCAG 2.2 notes.

A concrete workflow that fits 10 to 100 engineers

Here’s a two-week loop I’ve seen work without turning into a side quest. You can run it with one accessibility champion and one staff engineer who can unblock the tricky component fixes.

  • Day 1: run the tool on the three surfaces. Export findings by page and component.
  • Day 2: triage into P0, P1, P2. P0 means a blocked task like checkout or signup.
  • Days 3 to 8: fix the top 10 issues. Pair a designer and engineer on each.
  • Day 9: manual verification. Keyboard-only, then one screen reader pass.
  • Day 10: publish an accessibility changelog entry and update the statement.

This cadence also fits a platform team charter. If your org is building internal tooling, link this work to our guide on platform team roadmaps that don’t become ticket queues.

WCAG AA conformance checklist: what to test first, and why

A long checklist fails in a startup. It turns into compliance theater, and nobody reads it after the first week.

Start with a short list that maps to real user tasks. Expand from there.

The “AA First 12” checklist for product teams

This list is designed for web apps with forms, tables, and modals. It covers the failure modes that show up in audits and lawsuits.

  • Keyboard navigation: every interactive element works without a mouse.
  • Visible focus: focus is always visible, and never trapped in modals.
  • Form labels: every input has a programmatic label.
  • Error messages: errors identify the field and explain the fix.
  • Color contrast: normal text meets 4.5:1, and UI components meet 3:1.
  • Headings and landmarks: pages have a logical heading order.
  • Alt text: meaningful images have meaningful alt text.
  • Link names: links describe the destination, not “click here”.
  • Dismissible overlays: popups and menus can be dismissed and don’t block reading.
  • Touch targets and gestures: complex gestures have simple alternatives.
  • Name, role, value: custom components expose correct ARIA semantics.
  • Captions and transcripts: video content includes captions and transcripts.

Accessible.org’s checklist is a good reference for how criteria map to roles, like designer versus developer. It also highlights items teams miss, like keyboard shortcuts and pointer cancellation: Accessible.org WCAG checklist.

Level Access also provides a WCAG 2.2 AA summary and notes that EN 301 549 is expected to adopt WCAG 2.2 in 2025, which matters for EAA alignment: Level Access WCAG 2.2 AA checklist.

Where WCAG 2.2 changed the work

WCAG 2.2 adds criteria that hit common product patterns. Teams feel it most in auth, focus, and mobile.

Examples to watch:

  • Accessible authentication: WCAG 2.2 adds criteria that reduce memory and cognitive tests in login flows. Level Access explains the AAA enhanced version and what it forbids, like object recognition challenges: Accessible authentication notes.
  • Focus appearance: focus indicators need enough contrast and size to be visible.
  • Dragging and gestures: drag-only interactions need alternatives.

Here’s the failure I see over and over: a custom select component looks great in Figma, ships fast, and then breaks screen readers. Users can’t pick a plan. Revenue drops. Support gets noisy. The fix is often one engineer-day, but only if you catch it before that component spreads across the design system.

That’s why accessibility belongs in the design system backlog. Tie it to our internal guide on design system governance and versioning.

Legal risk isn’t abstract anymore. It’s a pipeline.

UsableNet tracks 4,000 plus digital accessibility lawsuits per year since 2021, and it also reports repeat defendants. In 2025, 1,427 lawsuits targeted companies that had already been sued. That is 45 percent of federal filings in that dataset: UsableNet ADA website compliance lawsuit tracker.

BeAccessible summarizes UsableNet’s 2025 count at 5,114 lawsuits and also cites WebAIM’s failure rates. It lists the top homepage issues, like low contrast and missing labels: 2026 web accessibility statistics.

Cost math matters too, especially once your CFO starts asking what “good” looks like. WCAGsafe lists typical ranges like $2,500 to $10,000 for an audit, and $30,000 average out-of-court settlements. It also cites a $5.15 million Fashion Nova class action settlement: ADA lawsuit statistics and cost ranges.

Europe adds another layer. UserWay notes the European Accessibility Act became enforceable on June 28, 2025, and penalties vary by country. It cites fines up to €100,000 in Germany and €250,000 in France, plus market removal risk: EAA enforcement and penalties.

What to document so the company can defend its program

Courts and regulators look for a pattern of effort. They also look for a plan.

Keep these artifacts in a shared folder and link them from Command Center:

  • Accessibility policy: target level, scope, and exceptions process.
  • Audit logs: tool runs, dates, and top findings.
  • Remediation tickets: links to PRs, owners, and shipped dates.
  • Manual test notes: keyboard and screen reader checks for key flows.
  • Accessibility statement: what is supported, and how users report issues.

This is the same muscle as incident response. If your org already runs blameless reviews, reuse that format. Link it to our incident postmortem guide and keep the same tone.

CTO playbook: run an accessibility audit tool program without slowing delivery

Accessibility programs fail for two reasons. Teams treat them like a one-time project, or they dump all the work on one specialist and call it done.

A CTO needs a system that scales.

Immediate actions

  1. Pick a target: commit to WCAG 2.2 AA for the three audit surfaces.
  2. Name an owner: assign an accessibility champion in engineering and design.
  3. Run the first assessment: use the tool on marketing, auth, and core paths.
  4. Fix the top 10: ship visible improvements in two sprints.
  5. Add a regression gate: block merges that reintroduce known failures.

Track this work like reliability work. Use our Engineering Metrics Dashboard to add two metrics: open accessibility issues by severity, and median time to remediation.

Policy framework

  1. Scope: define what “website” includes. Include PDFs, emails, and embedded widgets.
  2. Third party risk: require vendors to provide VPATs or accessibility statements.
  3. Exception process: allow exceptions, but require a time-bound fix plan.
  4. Training: run a 60-minute onboarding for designers and frontend engineers.

Brisk Ventures calls out that accessibility extends beyond the website to PDFs, emails, and internal dashboards. It also stresses regular audits and documented remediation: Accessibility trends through 2025.

Architecture principles

  1. Design system first: fix components once, then roll out by version.
  2. Semantic HTML by default: prefer native elements over div-based controls.
  3. ARIA as a last resort: use ARIA to fill gaps, not to rebuild the DOM.
  4. Test hooks for accessibility: add stable selectors for focus and labels.

For teams with multiple frontend stacks, model the component dependencies. Use our ArchiMate Modeler to map which apps consume which UI libraries, then plan upgrades.

A decision matrix: what to fix now vs later

Use this matrix in triage. It keeps debates short.

Issue typeUser impactLegal exposureFix costPriority
Signup or checkout blocked by keyboard trapHighHighMediumP0
Missing form labels on billing pageHighHighLowP0
Low contrast on marketing headingsMediumMediumLowP1
Missing captions on product demo videoMediumMediumMediumP1
AAA only criteria in low traffic admin pageLowLowMediumP2

This is also a build vs buy moment. If the team is debating an accessibility overlay or widget, run the decision through our Build vs Buy Matrix and include legal counsel in the review.

Enterprise implications for Series A and B CTOs

  1. Sales cycles: mid-market and enterprise buyers ask for accessibility proof. A lightweight audit log and statement can unblock deals.
  2. Vendor exposure: embedded chat, payment, and analytics widgets can break keyboard and screen reader flows. The company still owns the user experience.
  3. Repeat litigation risk: UsableNet data shows repeat defendants are common. A one-time fix does not reduce exposure.
  4. Global compliance drift: EAA enforcement started June 2025, and EN 301 549 is expected to adopt WCAG 2.2 in 2025. A US-only plan will age badly.

Bigger picture: accessibility is becoming a product quality bar

WCAG 2.2 isn’t just a checklist. It pushes teams toward better UI engineering. Teams that build keyboard-first flows tend to ship better power-user experiences too. Teams that label forms well see fewer “I can’t submit this” support tickets.

WCAG 3.0 work is also pushing the industry toward outcome-based scoring, not binary pass-fail. Brisk Ventures notes teams are already preparing for that shift: WCAG 3.0 preparation trend.

So here’s the question I ask teams: if a user can’t complete your core flow without a mouse, do you want to learn that from an audit, or from a demand letter?

Use the tool: WCAG 2.2 Compliance

Sources

  1. W3C WCAG standards and guidelines
  2. Level Access WCAG 2.2 AA summary and checklist
  3. UserWay WCAG 2.2 compliance overview and EAA notes
  4. AudioEye website accessibility lawsuit trends and WCAG 2.2 notes
  5. Accessible.org WCAG checklist 2.1 AA and 2.2 AA
  6. Brisk Ventures accessibility trends through 2025
  7. BeAccessible 2026 web accessibility statistics
  8. UsableNet ADA website compliance lawsuit tracker
  9. WCAGsafe ADA lawsuit statistics and cost ranges
  10. The Must Have WCAG Checklist PDF