DEV Community

Dominik Ilnicki
Dominik Ilnicki

Posted on

5 tools to audit your website accessibility

In a previous post, I shared with you 5 web accessibility issues and some ways to cope with them.

Today I'll list 5 tools that help you test your site against the a11y and help improve your codebase in that area.

01. "Accessibility Insights for Web" extension

I'm a very big fan of that tool. It has three main features.

  1. Fast Pass :
    • Automatic test - You run a generic test against your site and it returns the report. You can find their useful tips on how to get rid of all the fundamental problems.
  2. Tab stops - It visualizes the tab order on your site. You can walk through the app using the keyboard and see how the focus behaves.
  3. Assessment It provides you a checklist with all the stuff that you should check manually to make sure that your app is accessible. It tells you very specific why, what and how you should test,
  4. Ad hoc tools That feature lets you test different things like heading hierarchy or color contrast ratio in real-time.

02. "NoCoffee Vision Simulator" chrome extension

Thank's to that extension you can step into disordered people's shoes and simulate various eye diseases directly in your browser.

03. Accessibility tab in lighthouse

You can also audit your site using Google lighthouse and check the Accessibility tab to get insights on how to improve your site.

04. Whocanuse.com

That site allows you to check the element's contrast ratio. You can also investigate what percentage of the population may have problems with capturing your elements.

05. axe-core

Axe core it's the mother of the vast majority of accessibility tools. It's an accessibility testing engine used by a lot of other tools like Google lighthouse. You can build something completely new on top of that.

--
I hope you haven't heard at least about one of them and It'll help you make the web a more accessible place, see you in the next post ✌️


🐦 Follow me on Twitter for more a11y/webdev related stuff.

👨‍💻 If you want to find & join the open-source project check out my latest side-project - JustContribute.

Top comments (1)

Collapse
 
sofiapalamarchuk profile image
Sofia Palamarchuk

Love this list! I have been learning more about accessibility lately as well. Def have some work to do on my sites. I also found this list, which also shares some of the same resources as you, but I found it super helpful also: abstracta.us/blog/accessibility-te...