← Back to Payloads
Dev Tools2026-04-27

axe DevTools: Accessibility Auditing Without the Excuses

Accessibility is a solved problem in theory and a disaster in practice. axe DevTools gives your development team real, actionable findings — not a 47-item checklist to manually review — integrated directly into your CI pipeline and browser.
Quick Access
Install command
$ mrt install accessibility
Browse related skills
axe DevTools: Accessibility Auditing Without the Excuses

TL;DR

axe-core runs over 100 automated accessibility tests against your rendered DOM — WCAG 2.1 AA/AAA, Section 508, Best Practices — and gives you specific, fixable findings with source locations. The same engine powers the browser DevTools extension and a CI/CD-native CLI.

The 10-Second Pitch

  • **100+ automated tests** — colour contrast, missing alt text, invalid ARIA, keyboard trap detection, and more
  • **Zero false positives by design** — axe only flags issues it can verify programmatically
  • **CI/CD native** — CLI output feeds directly into GitHub Actions, GitLab CI, or any pipeline
  • **Browser DevTools extension** — real-time auditing as you develop, not after a release
  • **Playwright and Puppeteer integration** — run accessibility checks as part of your E2E test suite

Setup in 3 Steps

1. **Install the browser extension** — Chrome or Firefox from the axe DevTools store page. This is for manual auditing during development.

2. **Add to your CI pipeline:**

npm install @axe-core/cli

npx axe http://your-app.dev --exit

3. **For Playwright integration:**

import AxeBuilder from '@axe-core/playwright';

test('accessibility audit', async ({ page }) => {

await page.goto('/');

const results = await new AxeBuilder({ page }).analyze();

expect(results.violations).toEqual([]);

});

**Prompt to test it:**

Run an accessibility audit on the checkout flow at /checkout and list every violation with its WCAG criterion and severity.

The DX Advantage

Most accessibility tools dump a spreadsheet of issues. axe gives you:

  • **Specific selectors** — not 'some fieldset near the bottom'
  • **Help text URLs** — each violation links directly to deque University's explanation and fix instructions
  • **Impact ratings** — critical, serious, moderate, minor so you can triage
  • **DOM snapshots** — exact state of the page when the violation was detected

Pros / Cons

ProsCons
Industry standard — used by Google, Microsoft, EtsyAutomated testing covers ~30% of WCAG
CLI + browser + CI/CD integrationsSome violations require human judgment

Verdict

There is no excuse for shipping inaccessible UIs in 2026. axe DevTools makes accessibility testing automatic and developer-friendly. Install the browser extension during development, add the CLI to your CI pipeline, and break builds on critical accessibility regressions.

Very low false positive rateCan be slow on very large SPAs