Is keyboard-only testing underrated, or is it already a standard part of most teams’ workflows?
I ask because it feels like one of the simplest accessibility checks you can do, but I still don’t see it talked about nearly as much as automated scans, visual regression testing, or Lighthouse scores. In practice, it catches broken focus states, bad tab order, keyboard traps, etc. fast.
My take is that keyboard testing should be one of the default checks for any web app, especially for forms, modals, navigation, and anything interactive. If a flow can’t be completed with Tab, Shift+Tab, Enter, Space, and the arrow keys, that’s usually a sign the UX needs work, not just the accessibility layer.
Still, I’m curious whether teams actually build this into their normal workflow or whether it mostly gets handled as an occasional manual check. For me, it feels like one of the highest-signal, lowest-effort things you can do before release.