DEV Community

Discussion on: How using Testing Library will help you improve the accessibility of your application

Collapse
 
stereobooster profile image
stereobooster

Be aware that manual testing is still needed for a11y. For example, in your code button has role, but doesn't have tabIndex, which means that users which don't use mouse can't focus the button and trigger an action

Collapse
 
juhanakristian profile image
Juhana Jauhiainen • Edited

You're absolutely right 👍 This is no replacement for proper a11y testing but will uncover some issues.