Website Accessibility Audit: WCAG AA Testing & Report

Audit of website accessibility according to WCAG

Development and maintenance of all types of websites:

Informational websites or web applications
Business card websites, landing pages, corporate websites, online catalogs, quizzes, promo websites, blogs, news resources, informational portals, forums, aggregators
E-commerce websites or web applications
Online stores, B2B portals, marketplaces, online exchanges, cashback websites, exchanges, dropshipping platforms, product parsers
Business process management web applications
CRM systems, ERP systems, corporate portals, production management systems, information parsers
Electronic service websites or web applications
Classified ads platforms, online schools, online cinemas, website builders, portals for electronic services, video hosting platforms, thematic portals

These are just some of the technical types of websites we work with, and each of them can have its own specific features and functionality, as well as be customized to meet the specific needs and goals of the client.

Our competencies:

Frequently Asked Questions

Latest works

  • image_web-applications_feedme_466_0.webp
    Development of a web application for FEEDME
    1281
  • image_ecommerce_furnoro_435_0.webp
    Development of an online store for the company FURNORO
    1237
  • image_crm_enviok_479_0.webp
    Development of a web application for Enviok
    977
  • image_crm_chasseurs_493_0.webp
    CRM development for Chasseurs
    1026
  • image_website-sbh_0.webp
    Website development for SBH Partners
    1103
  • image_website-_0.webp
    Website development for Red Pear
    550

Audit of website accessibility according to WCAG

A user with a visual impairment cannot fill out a form on your site—the submit button is inaccessible via keyboard, and the screen reader doesn't announce errors. According to WebAIM statistics, 96% of the million home pages contain WCAG errors. We identify such barriers and provide precise instructions to eliminate them, so your site meets the WCAG 2.2 standard at level AA. Ignoring accessibility risks not only losing audience but also legal penalties: fines in the US can reach $50,000 for a first violation, and in Europe up to €75,000 under GDPR (for government sites). Savings from timely remediation can be up to $10,000.

An accessibility audit is not a one-time check but the embedding of an inclusive culture into the development process. Manual testing reveals twice as many errors as automated testing, so we combine both approaches. Timely auditing helps avoid litigation and increases user loyalty.

Why WCAG AA is not just a checkbox?

Government websites in many countries are required to comply with WCAG AA. Commercial projects follow it de facto: it reduces legal risks and expands the audience by 15–20%. The current version of the standard—WCAG 2.2—includes new criteria: focus indication (2.4.13), target size (2.5.8), and input persistence (2.5.7). Our audit covers all these requirements.

How we test accessibility: from automation to manual testing

Automated scanning identifies about 30–40% of violations: missing alt texts, low contrast, incorrect heading structure, missing ARIA attributes. We use axe-core, Lighthouse, and Pa11y.

# axe-core CLI npm install -g @axe-core/cli axe https://mysite.com --reporter=json > axe-report.json 

Manual testing is mandatory. We check keyboard navigation, screen reader compatibility (NVDA + Firefox, VoiceOver + Safari, TalkBack + Android). Modal windows, forms, custom components—each interactive element goes through 20+ tests. For example, when checking alt texts we note: <img src="banner.jpg" alt="Website accessibility audit: 30% discount"> — correct alt, while an empty alt on a decorative image is an error.

Focus traps in modal windows are one of the most common errors. Correct React code:

const Modal = ({ isOpen, onClose, children }) => { const modalRef = useRef(null); useEffect(() => { if (isOpen) { const previouslyFocused = document.activeElement; modalRef.current?.focus(); return () => { previouslyFocused?.focus(); }; } }, [isOpen]); return ( <div ref={modalRef} role="dialog" aria-modal="true" aria-labelledby="modal-title" tabIndex={-1}> {children} </div> ); }; 

Comparison of testing methods

Method Errors detected Time Example tools
Automated 30–40% Minutes axe, Pa11y, Lighthouse
Manual 60–70% Hours–days Keyboard, NVDA, VoiceOver
Combined ~95% 1–3 days Our standard process

What we check: key WCAG AA criteria

Criterion Requirement Common mistake
1.1.1 Alt Text All images have alt Decorative images missing alt=""
1.3.1 Info and Relationships Structure conveyed semantically <div> instead of <button>, <nav>, <main>
1.4.3 Contrast 4.5:1 for text, 3:1 for large text Gray text on white background
2.1.1 Keyboard Everything operable via keyboard Missing focus on custom dropdowns
2.4.7 Focus Visible Visible focus indicator outline: none without alternative
3.3.1 Error Identification Form errors described in text Color-only error indication
4.1.2 Name, Role, Value ARIA for custom components Missing role/aria-label on icon buttons

How to fix typical errors?

Icon button without description:

// BAD <div onClick={handleDelete}><TrashIcon /></div> // GOOD <button onClick={handleDelete} aria-label="Delete record"><TrashIcon aria-hidden="true" /></button> 

Skip navigation link:

<a href="#main-content" class="skip-link">Skip to main content</a> <style> .skip-link { position: absolute; left: -9999px; } .skip-link:focus { left: 0; top: 0; z-index: 9999; } </style> 

Report structure

  • Full list of violations mapped to WCAG criteria (critical, serious, moderate).
  • Screenshots and HTML selectors for each problematic element.
  • Fix recommendations with ready-to-use code examples.
  • Manual testing checklist for developers.
  • Integration recommendations for CI/CD (Playwright, axe).

Example entry:

  • Violation: Missing alt text on image (1.1.1).
  • Selector: #main img.banner.
  • Priority: Critical.
  • Recommendation: Add alt="Banner: 30% discount on winter collection".

What is included in the audit process?

  1. Analytics — identify key pages and scenarios (up to 20 pages in 1 day).
  2. Automation — run axe/Pa11y, collect 30–40% of errors (1 hour).
  3. Manual testing — keyboard, screen readers, logical order (1–2 days).
  4. Report — structured list with priorities.
  5. Recommendations — ready fixes with code (2–3 days).

Timeline and cost

Audit of a site up to 20 pages takes 2–3 business days. Cost is determined individually based on complexity and number of interactive scenarios. Order an accessibility audit—we will prepare a detailed report and help implement fixes. Contact us for a consultation.

Our experience: 5+ years in web accessibility, 100+ projects audited for banks, government agencies, and e-commerce. We guarantee WCAG AA compliance.