Testland
Browse all skills & agents

wave-a11y

Runs WebAIM WAVE accessibility scans via the WAVE API or the browser-extension UI - produces visual overlay of errors / alerts / structural elements directly on the page, plus categorized JSON output for CI use. Use when the team values manual-review-friendly visual feedback (the WAVE overlay) alongside automated CI scans, or when a regulatory audit requires WebAIM-branded reports.

Install with skills.sh (any agent)

npx skills add testland/qa --skill wave-a11y
View source

wave-a11y

Overview

WAVE (Web Accessibility Evaluation Tool) is WebAIM's flagship a11y scanner - distinguished by its visual overlay that places icons directly on a rendered page showing errors, alerts, and structural elements. It runs via:

  • Browser extension - manual, immediate, visual.
  • WAVE API - programmatic scans against any URL.
  • Standalone library (Stand-Alone API) - for self-hosted scanning.

The WAVE convention is to categorize findings into: errors (definite WCAG failures), alerts (likely issues needing review), features (positive a11y patterns to celebrate), structural elements (landmarks, headings), HTML5 / ARIA (machine-readable semantics), contrast errors (color contrast specifically).

Source-fetch note (2026-05-04): WAVE's documentation lives across wave.webaim.org, webaim.org/articles, and tool- specific subpages. This skill cites WebAIM as the canonical source for WAVE conventions; the API specifics may evolve - verify the current WAVE API v3+ documentation at wave.webaim.org/api before authoring CI integrations against specific endpoints.

When to use

  • A regulatory audit requires WebAIM-branded reports (common in US public-sector and education compliance work).
  • The team includes designers / non-technical reviewers who benefit from the visual overlay.
  • Auditing a third-party / external site without code access - WAVE works against any public URL.
  • Cross-checking automated axe / pa11y findings - WAVE's classification differs slightly and surfaces different presentation issues.

If the goal is purely automated CI gating without visual review, axe-a11y and pa11y-a11y are simpler and free.

Install / access

MethodCost
Browser extension (Chrome / Firefox / Edge)Free.
WAVE APIFree credits + paid tiers (per WebAIM).
Stand-Alone API (self-hosted server)Commercial license.

For programmatic CI integration, the WAVE API is the canonical path; pricing / signup at wave.webaim.org/api.

Manual usage (extension)

  1. Install the WAVE extension from Chrome Web Store / Firefox AMO.
  2. Navigate to the page under test.
  3. Click the WAVE icon → the page reloads with the overlay.
  4. Review icons placed on the page:
    • Red error icons mark definite failures.
    • Yellow alert icons mark likely issues needing review.
    • Green feature icons mark good patterns.
    • Purple structural icons mark landmarks / headings.
    • Blue HTML5/ARIA icons mark semantic elements.
  5. Click the "Details" tab in the WAVE sidebar for per-icon explanations.

The visual feedback is the WAVE differentiator - designers can review without reading text reports.

Programmatic usage (API)

curl 'https://wave.webaim.org/api/request?key=YOUR_KEY&url=https://example.com&reporttype=4'

Reporttype 4 returns the full JSON. The response includes:

{
  "status": { "success": true, "httpstatuscode": 200 },
  "statistics": {
    "pagetitle": "Example",
    "pageurl": "https://example.com/",
    "totalelements": 423,
    "allitemcount": 12,
    "errorcount": 3,
    "alertcount": 5,
    "featurecount": 4,
    ...
  },
  "categories": {
    "error": { "items": { ... } },
    "alert": { "items": { ... } },
    "feature": { ... },
    "structure": { ... },
    "html5": { ... },
    "contrast": { "items": { ... } }
  }
}

Per category, items is keyed by the WAVE issue code (e.g. alt_missing, label_missing, contrast); each entry has description, count, selectors[], and per-instance xpath / selector / html.

Pipe to jq for triage:

# All error-level codes + counts
jq -r '.categories.error.items | to_entries[] | "\(.key): \(.value.count)"' wave-results.json

# Failing selectors per issue
jq -r '.categories.error.items | to_entries[] | .value.selectors[] | tostring' wave-results.json

CI integration

The CI pattern uses the WAVE API:

# .github/workflows/wave.yml
name: wave-a11y

on:
  pull_request:
    paths: ['src/**']

jobs:
  wave:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v5

      - name: Run WAVE scan via API
        env:
          WAVE_API_KEY: ${{ secrets.WAVE_API_KEY }}
        run: |
          # Scan each URL the project cares about
          for url in https://staging.example.com/ https://staging.example.com/dashboard; do
            slug=$(echo "$url" | tr '/:' '__')
            curl -sS "https://wave.webaim.org/api/request?key=$WAVE_API_KEY&url=$url&reporttype=4" \
              > "wave-$slug.json"
          done

      - name: Upload reports
        if: always()
        uses: actions/upload-artifact@v4
        with:
          name: wave-reports
          path: wave-*.json
          retention-days: 14

      - name: Gate via violation-gate
        run: python scripts/run_a11y_gate.py wave-*.json

The gate logic lives in a11y-violation-gate; this CI workflow's job is to capture the WAVE outputs.

Anti-patterns

Anti-patternWhy it failsFix
Treating "alerts" as errorsAlerts are flagged for human review, not auto-fail.Block on errors; route alerts to the review process.
Storing WAVE API key in committed configKey leak; quota theft.Always in CI secrets.
Running WAVE against productionAPI hits load production; possible PII leakage in scan data.Always staging or pre-prod.
Using WAVE alone without axe / pa11yWAVE has different rule coverage; misses some structural / ARIA issues.Pair with axe-a11y for full coverage.
Ignoring "contrast errors" because they're "not real bugs"Contrast errors are SC 1.4.3 violations - definite WCAG failures.Treat as errors; aggregate via gate.

Limitations

  • Authenticated pages. The WAVE API can't authenticate; it scans public URLs only. For auth-required pages, run the Stand-Alone API or use the extension manually.
  • Single-page-applications. Some SPA routes don't have meaningful URLs without parameters; WAVE's URL-based scanning may not match the user's actual journey.
  • Quotas / costs. The free WAVE API tier has limits; high-traffic CI usage requires a paid tier.
  • Different rule coverage. WAVE finds a slightly different set of issues than axe / pa11y - it's complementary, not replacing.

References

  • WAVE landing page - https://wave.webaim.org/
  • WAVE API documentation - https://wave.webaim.org/api/
  • WebAIM (the organization behind WAVE) - https://webaim.org/
  • W3C WCAG 2.2 - https://www.w3.org/TR/WCAG22/
  • axe-a11y, pa11y-a11y, lighthouse-a11y - alternative scanners.
  • a11y-violation-gate - CI gate aggregating WAVE + sibling-scanner results.

Related skills

a11y-violation-gate

Builds a CI gate that fails the build on **new** WCAG / a11y violations introduced by a PR while grandfathering pre-existing violations on a per-rule / per-page baseline. Aggregates verdicts from axe-core / pa11y / Lighthouse a11y / WAVE / IBM Equal Access scans. Use when a project has accumulated a11y debt and a strict "zero violations" gate would block every PR - the ratchet pattern lets the team ship while preventing regressions.

aria-authoring-patterns

Reference for the W3C ARIA Authoring Practices Guide (APG) - covers the 31 canonical interactive-widget patterns (Combobox, Dialog, Menu, Tabs, Tree, etc.), their required ARIA roles and states, the keyboard-interaction model per pattern, and the canonical-violations to watch for. Use when authoring a custom interactive widget that doesn't have a native HTML equivalent, or when reviewing one for ARIA correctness.

axe-a11y

Authors and runs axe-core accessibility scans - the most-deployed open-source a11y engine - via the `axe.run()` JavaScript API or the @axe-core/playwright / @axe-core/cli wrappers, parses the `violations[]` results into per-rule severity (critical / serious / moderate / minor), configures rule disable / disable-by-tag patterns, and emits JUnit-shaped output for CI gating. Use when the project ships UI tests in JavaScript / TypeScript and wants automated a11y coverage on every PR.

ibm-equal-access-a11y

Authors and runs IBM Equal Access accessibility-checker scans - IBM's open-source a11y engine with WCAG 2.0 / 2.1 / 2.2 + US Section 508 rule sets, integrating with Node / Selenium / Puppeteer / Playwright / Karma / Cypress test runners. Distinguished by IBM's enterprise-tier rule coverage and Section 508 specificity. Use when the project ships to US federal / public-sector customers (Section 508 mandate) or when the team values IBM-branded a11y reporting.

lighthouse-a11y

Configures Lighthouse CI's Accessibility category for automated accessibility testing (a11y / WCAG coverage) - `categories:accessibility` audits backed by axe-core (axe) - with per-URL minimum-score assertions (fail a build when a page's score drops below a threshold) and per-audit overrides, distinct from the Performance category that `lighthouse-perf` covers. Use when the project already runs Lighthouse CI for Web Vitals and the team wants to add accessibility coverage in the same pipeline rather than spinning up a separate scanner.

pa11y-a11y

Authors and runs pa11y accessibility scans - a CLI / Node.js tool that wraps HTML CodeSniffer (htmlcs) and / or axe-core engines - with `pa11y {url}` invocation, reporter selection (cli / csv / json / html / tsv), WCAG standard selection (WCAG2A / WCAG2AA / WCAG2AAA), and rule ignoring. Use when the project needs scriptable a11y scans without a full test framework, or when a Node-stack project wants an alternative to direct axe-core use.

screen-reader-test-author

Builds a screen-reader test narrative - a step-by-step manual test script for NVDA (Windows), JAWS (Windows), VoiceOver (macOS / iOS), or TalkBack (Android) - that exercises a specific user flow through a component or page and captures the expected announcement at each step. Use when authoring an accessibility-acceptance test the team will run before sign-off, OR when scripting a manual a11y audit.

wcag-checklist-builder

Builds a per-component WCAG 2.2 accessibility checklist from a component spec - covers focus management, color contrast, ARIA roles & states, keyboard interaction, error handling, and live-region announcements - emitting a markdown checklist or YAML test plan that pairs with screen-reader-test-author for manual verification and the violation gate for automated scans. Use during component-spec review or pre-implementation acceptance.

wcag-color-contrast

Reference for WCAG 2.2 color-contrast conformance - covers SC 1.4.3 Contrast (Minimum, AA), 1.4.6 Contrast (Enhanced, AAA), 1.4.11 Non-text Contrast (AA), and 1.4.13 Content on Hover or Focus (AA) - with the canonical contrast ratios (4.5:1 normal text, 3:1 large text and UI components), measurement formula references, and bulk design-token checking patterns. Use when designing a color palette, reviewing a component for accessibility, or auditing existing CSS for contrast violations.

wcag-compliance-reporter

Builds a per-page WCAG 2.2 compliance score report by aggregating output from one or more accessibility scanners (axe-core / pa11y / lighthouse / WAVE / IBM Equal Access), pivoting violations by Success Criterion (1.4.3 contrast, 2.4.7 focus visible, etc.), grouping by conformance level (A / AA / AAA), reporting per-page coverage gaps explicitly (the "this page wasn't scanned" failure mode), and emitting both an executive summary and a per-page drill-down. Use after a multi-page accessibility scan - pa11y-ci, axe across a sitemap, lighthouse-batch - when the team needs a shareable conformance report rather than a per-page tool dump.

wcag-focus-trap

Reference for **intentional** focus management in modal / dialog / drawer / popover components - the canonical pattern that satisfies WCAG SC 2.4.3 (Focus Order) without violating SC 2.1.2 (No Keyboard Trap). Covers focus-on-open, focus-cycle-within-container, Escape-closes-and-restores, return-to-trigger, and inert-the-rest-of-the-page. Use when authoring or reviewing any component that displays content over the page (modals, drawers, popovers, command palettes).

wcag-keyboard-navigation

Reference catalog for WCAG 2.2 keyboard-navigation conformance - covers SC 2.1.1 (Keyboard), 2.1.2 (No Keyboard Trap), 2.1.4 (Character Key Shortcuts), 2.4.3 (Focus Order), 2.4.7 (Focus Visible), 2.4.11/2.4.12 (Focus Not Obscured) - with conformance levels (A/AA), test scripts, and per-criterion failure patterns. Use when authoring or reviewing keyboard-only interaction support.

widget-a11y-test-matrix

Per-widget manual accessibility test matrices where every row pairs one keystroke with the expected focus behavior, the expected NVDA announcement, the expected VoiceOver announcement, and the WCAG 2.2 success criterion that row verifies. Covers button, toggle button, checkbox, text input, modal dialog, menu button, and combobox archetypes, plus universal Tab traversal. Use when a rendered widget has cleared automated scanning and a tester needs a fill-in pass/fail sheet to run by hand against NVDA and VoiceOver.