Skip to main content
All Posts

Accessibility Considerations

Screen reader compatibility is not the same as screen reader usability

A page can pass an automated accessibility scan and still be difficult to use with a screen reader. This post explains the gap between compliance testing and real assistive technology use.

6 min read Hafiza Mehak Munir

Two related but different questions

A page can pass an automated accessibility scan, meet every applicable WCAG success criterion, and still be difficult to use with a screen reader. Compatibility and usability are related but distinct. Compatibility asks whether assistive technology can parse and announce the content correctly. Usability asks whether a screen reader user can actually accomplish their goal in a reasonable amount of time and effort. A page can score well on the first question and poorly on the second.

What automated testing actually measures

Automated accessibility tools check for the presence of specific technical properties, such as alt attributes on images, labels associated with form fields, sufficient color contrast, and valid heading structure. These checks are valuable and catch real problems, but they evaluate the code, not the experience of using it. A form can have a properly labeled field for every input and still present those fields in an order that makes no logical sense when read aloud, forcing a screen reader user to build a mental map of the form before they can complete it.

None of this shows up in an automated report, because the report has no way to evaluate sequence, redundancy, or cognitive load. Those qualities only become visible when someone actually navigates the page with a screen reader.

Where the gap shows up most often

Three patterns repeatedly separated a technically compliant page from a usable one in this research. Long, unlabeled regions of repeated content, such as a list of products with no distinguishing information read aloud before the product name, forced participants to listen through redundant text on every item. Deeply nested navigation, where reaching a specific setting required moving through several unlabeled levels, was technically navigable but exhausting to use, since screen reader users typically move through content sequentially rather than scanning visually the way a sighted user would. Dynamic content updates, such as a cart total changing after a quantity edit, were sometimes invisible to a screen reader entirely if the update was not announced through a live region, even though the visual page updated correctly.

The page announced correctly. It just took four times as long to use as the same task took a sighted participant, because nothing about the sequence considered how it would sound.

Testing with real assistive technology use

Closing this gap requires testing with people who use screen readers daily, not just running an automated scan or having a sighted team member navigate with a screen reader turned on temporarily. Daily users have developed habits, keyboard shortcuts, and expectations built over years of using the technology, and they notice friction that a first time user of a screen reader will not. Their feedback tends to focus less on whether something is technically accessible and more on whether it is efficient, which is ultimately the more useful question for a team trying to build something people will actually use.

What to carry forward

Passing an automated accessibility scan confirms technical compliance, not usability for screen reader users.

Redundant repeated content, deeply nested navigation, and unannounced dynamic updates are common gaps between compliance and usability.

Testing with people who use screen readers daily surfaces friction that automated tools and first time screen reader users will not notice.

The more useful question is not whether a page is technically accessible, but whether it is efficient to use.

Further reading

World Wide Web Consortium. Web Content Accessibility Guidelines (WCAG) overview. Web Accessibility Initiative.

World Wide Web Consortium. Web Content Accessibility Guidelines (WCAG) 2.1. W3C Recommendation, 2018.