DEV Community

Cover image for Accessibility Testing - aXe Browser Extension
Dave Follett
Dave Follett

Posted on • Originally published at davefollett.io on

Accessibility Testing - aXe Browser Extension

Inspired by the syntax.fm podcast episode on website accessibility (a11y), I decided to try out the aXe browser extension created by Deque Systems. Though Wes and Scott mention several interesting tools, this one appealed to me because it sounded both robust and easy to use.

To give aXe a test drive I decided to use the open source project QIT. I recently started contributing to this project, so it seemed to be a natural fit. QIT is a progressive web app (pwa) that allows you to search software development podcasts by topic. It is the brainchild of Joe Zack, one of the hosts of the Coding Blocks podcast, that was brought to life by him and members of the Coding Blocks slack channel. If you have not checked out the Coding Blocks podcast or slack channel, I highly recommend that you do.

Setup

Axe has a few different ways it can be used but for this article I will be using the aXe for Chrome browser extension. Setup is very easy. Just install the axe extension for Google Chrome from the chrome web store.

Test execution

Running the aXe tests

Testing a web page is also really easy:

  1. Navigate to the page you want to test
  2. Open Chrome’s DevTools (Control + Shift + I)
  3. Select the aXe tab
  4. Click the ANALYZE button

Let’s go ahead and run the tests against the QIT main page and take a look at the results.

Inspecting the results

The aXe tests results

Axe does a really good job at not just identifying the issues but providing everything you could possibly need to fix the issues.

  • A description of the issue
  • The impact rating of the issue
  • Toggles to highlight or inspect the issue in the page
  • A list of ways to resolve the issue
  • A link for learning more about the issue

Now what?

Wow that’s great. I found four a11y issues in a matter of minutes but what’s the point if I don’t fix them! Before jumping in, I should be a good developer and create issues for them on the GitHub project. And since I recently read Sung Kim’s (@SlightEdgeCoder on Twitter) article:

Why not great a custom issue template for accessibility issues?

Thanks for the emoji recommendations Sung Kim!

Now that the issue is recorded, it’s time to fix it.

The fix

A11y fix by adding aria-label attribute

This particular accessibility issue can be fixed by adding an aria-label attribute to the <input> element. In addition to fixing the issue, it also does not alter the original look of the <input> element. Though a better solution might be to redesign the page to use <label> element that is associated with the <input> instead of using the aria-label attribute. I will leave that for another day and take the small win of making the site slightly better for accessibility than it was before.

Resources

Top comments (7)

Collapse
 
dance2die profile image
Sung M. Kim

Thanks Dave for making accessibility easy to test & apply.

aXe looks like accessibility version of Chrome's LightHouse (under "Audit" in Chrome Dev Tools)

I also found an aXe for FireFox & works great.

Collapse
 
davefollett profile image
Dave Follett

I believe Chrome's LightHouse is aXe under the hood. I chose to use aXe because it has a few more features than are not exposed through LightHouse. But I do kinda like the way LightHouse assigns a score. Either way you can't go wrong.

Collapse
 
dance2die profile image
Sung M. Kim

Ah ha 💡. That proves that aXe has been battle tested thoroughly.

Collapse
 
dance2die profile image
Sung M. Kim

OK, I took an action and used aXe to fix all accessibility issues reported by aXe, achieving 100% on LightHouse thanks to your post 🕺

Thread Thread
 
davefollett profile image
Dave Follett

Great job!

Collapse
 
thejoezack profile image
Joe Zack

Ever since reading this I've been aXe-ing all the things, so many of the issues are really easy to fix that it's tough to justify avoiding it.

Great write up, and thanks for the shout out!

(also, that template looks amazing!!)

Collapse
 
davefollett profile image
Dave Follett

Thanks for the kind words :)