1
0
Fork 0
mirror of https://git.sr.ht/~seirdy/seirdy.one synced 2024-11-09 16:02:10 +00:00

New note: problem with automated a11y checks

This commit is contained in:
Rohan Kumar 2022-12-22 09:52:09 -08:00
parent a72a0622ea
commit 4bf85b23c6
No known key found for this signature in database
GPG key ID: 1E892DB2A5F84479

View file

@ -0,0 +1,17 @@
---
title: "The problem with automated accessibility checks"
date: 2022-12-22T09:52:09-08:00
replyURI: "https://a11y.info/@todd/109552097339472503"
replyTitle: "I run Lighthouse and WAVE as…a baseline of sorts"
replyType: "SocialMediaPosting"
replyAuthor: "Todd Libby"
replyAuthorURI: "https://toddl.dev/"
---
> I run Lighthouse and WAVE as a "Hey, let's see what I have ahead of me" kind of thing. A baseline of sorts. Then I go into manual testing
I strongly disagree with running automated tests *first* if you have the means to do manual tests. People get too hung up on automated tests revealing only <var>N</var> percent of issues; the reality is that they end up encouraging people to spend their time fixing those issues instead of more critical errors.
Less than a minute with the "inspector" tool in most browser DevTools (not even the Accessibility Inspector!) will quickly reveal poor use of semantic HTML, poorly-written alt-text, site titles that shouldn't be headings, non-descriptive names, and conflation of semantics with presentation. Fixing these is probably a better use of your time than hunting down every duplicate link name in a page that an automated checker finds.
I prefer running an automated checker after catching low-hanging fruit manually.