← All posts
Experience · Accessibility

What accessibility issues can a website audit catch automatically?

A website audit can verify the machine-detectable slice of accessibility: whether images carry alt text, whether text meets a contrast ratio, whether form fields have labels, whether headings nest in order, and whether custom controls expose a valid ARIA role. It cannot verify whether the result actually makes sense to someone using a keyboard or a screen reader, which is a judgment a crawler does not make. Knowing where that line falls is what makes an accessibility check useful instead of a false green light.

What does an automated accessibility check actually catch?

Most of what a crawl can verify has a fixed pass or fail rule, one a machine can apply the same way on every page:

WCAG checkWhat it verifiesAutomatable
Image alt textEvery non-decorative image carries a text alternativeYes
Color contrastText meets WCAG AA contrast against its backgroundYes
Form labelsEvery input has an associated, visible labelYes
Heading orderH1 through H6 nest without skipping a levelYes
ARIA roles and stateCustom widgets expose a valid role, name and stateYes
Link and button textControls read sensibly out of context, not just “click here”Yes
Keyboard reachabilityEvery interactive element can be reached and operated by keyboardPartial
Reading orderScreen-reader order matches the visual order and actually makes senseNo

Eight WCAG checks, and which ones a crawl can verify with a fixed rule versus which still need a person.

The WCAG checks a crawl can verify with a fixed rule, and the ones that still need a person to judge.

What still needs a human reviewer?

Confirming that the right markup exists is not the same as confirming that using it makes sense. That gap is exactly where an automated check has to stop and a person has to start.

Automation catches
A fixed rule, applied the same way on every page
  • Alt text present on every image
  • Contrast ratio meets WCAG AA
  • Every form field has a label
  • Headings nest without skipping a level
  • ARIA roles are valid and present
vs
Needs a human reviewer
A judgment call no fixed rule can make
  • Alt text actually describes the image
  • Tab order matches a sensible reading order
  • A screen reader announces state changes correctly
  • Error messages are understandable, not just present
  • The experience works, not just passes
Automation confirms the markup is there. A person still has to confirm the experience it produces actually works.

Why accessibility now sits next to Core Web Vitals

Accessibility used to be treated as a separate compliance track from the rest of a site's technical health. Three things changed that:

  • Legal exposure is documented. ADA-related web lawsuits go after exactly the kinds of failures that a crawl can catch, such as missing alt text, forms that have no labels, and contrast that fails at a glance.
  • The overlap with SEO and AI Visibility is direct. Alt text, heading structure and descriptive link text are read by search crawlers and AI engines much the way a screen reader reads them, so a fix here helps both.
  • Screen-reader and keyboard users are customers. A checkout that a mouse user can finish but a keyboard user cannot is associated with lost conversions. You can test the flow using the keyboard alone, so you can see where it breaks.

What does a missing-alt-text finding look like?

Each accessibility issue is scored the same way as every other finding on the site: an observation, its cost, a fix, and the evidence behind it.

Serious

Product images ship with no alt text

Observation148 of 212 product images return an empty or missing alt attribute.
ImpactA screen-reader user hears "image" instead of the product name, and the pages read as thinner content to a crawler too. −4 A-Score.
FixAdd a short, specific alt attribute to the product-image template.
ReceiptAutomated scan: 148 of 212 <img> elements on the crawled pages missing alt text.
An accessibility finding as Auditaar reports it: what was measured, what it costs, the fix, and the receipt.

How much do accessibility gaps cost the score?

Accessibility findings are not scored on a separate scale. They draw from the same additive pool as every other Experience check, so fixing one shows the same kind of points back as fixing a slow page.

58/100
Missing security headers −9Thin content −6Slow LCP −5Fix all three +20
Accessibility findings cost points from the same additive pool as any other check, and fixing them earns the same points back.

How to check the basics in five minutes

A handful of checks catch a large share of the common failures without any tooling beyond a browser.

  1. Turn off images and read the page. Anywhere a missing image leaves no clue what it was, the alt text is missing or wrong.
  2. Tab through the page with no mouse. If focus disappears, skips a control, or gets trapped, that control fails keyboard access.
  3. Zoom the page to 200%. Text that overlaps or gets clipped signals a layout that was never tested at that size.
  4. Check the heading outline in devtools. A jump from H1 straight to H4 is a skipped level.
  5. Run a free Snapshot of the homepage. It reports the machine-detectable failures above alongside the rest of the Experience pillar.

Accessibility audit FAQ

Does an automated check make a site WCAG compliant?

No. It verifies the checks that have a fixed pass or fail rule, alt text, contrast, labels, heading order and valid ARIA among them, but full WCAG conformance also needs a person testing real navigation with a keyboard and a screen reader. Treat an automated pass as a solid floor, not a certificate.

Is accessibility part of SEO?

Not directly, but the overlap is large. Alt text, heading structure and descriptive link text are read in much the same way by a screen reader, a search crawler and an AI engine assembling an answer, so most accessibility fixes also help findability and AI Visibility.

How does Auditaar score accessibility?

As part of the Experience pillar, alongside Core Web Vitals and mobile layout. Each machine-detectable failure is scored like any other finding: an observation, its cost to the A-Score, a fix, and the evidence behind it.

Auditaar checks the machine-detectable half of accessibility, alt text, contrast, labels, heading order and ARIA roles, on every audit depth, and the Deep Dive turns each failure into a fix ranked by what it earns back. Run a free Snapshot, or read how to read a website audit.

See it on your own site

Auditaar turns a single URL into a scored, sourced, ordered plan across all six pillars, AI Visibility included.

Related reading