A screen reader is software that reads the contents of a screen aloud using
synthesised speech or outputs it to a refreshable braille display. Screen
readers are used primarily by people who are blind or have severe visual
impairments, as well as by some users with cognitive or learning disabilities.
They are also used by developers and accessibility testers to verify that
interfaces work correctly with assistive technology.
[1]
Screen readers do not read what is visually rendered on screen. They read
the accessibility tree — a structured representation of the page built from
the DOM, ARIA attributes, and computed styles. This means:
| Screen reader | Platform | Cost | Notes |
|---|---|---|---|
| NVDA | Windows | Free | Most widely used on Windows. Pairs with Firefox and Chrome. |
| JAWS | Windows | Paid | Industry standard in enterprise and government. |
| VoiceOver | macOS / iOS | Built-in | Pre-installed on all Apple devices. |
| TalkBack | Android | Built-in | Pre-installed on Android devices. |
| Narrator | Windows | Built-in | Improving rapidly in recent Windows versions. |
| Orca | Linux | Free | Default screen reader on GNOME desktop. |
Screen reader users navigate pages in several modes. Understanding these
helps developers build interfaces that work correctly in each:
Reading mode (browse/virtual mode): The screen reader reads content
linearly, and arrow keys move through the document. Most content is
consumed this way.
Forms mode (application/interaction mode): Activated when focus enters
a form or interactive widget. Keystrokes are passed to the page rather
than intercepted by the screen reader.
Navigation shortcuts: Screen readers provide single-key shortcuts to
jump between elements by type. Common shortcuts vary by screen reader:
[3]
| Element | NVDA | VoiceOver (macOS) |
|---|---|---|
| Headings | H | VO + Command + H |
| Links | K | VO + Command + L |
| Landmarks | D | VO + U (Web Rotor) |
| Form controls | F | VO + Command + J |
| Tables | T | VO + Command + T |
When testing with a screen reader, verify:
Test with at least NVDA on Windows with Firefox or Chrome, and VoiceOver
on macOS with Safari — these represent the most common real-world combinations.
[1]
Last edited Apr 5, 2026, 7:37 PM · P**** J****