skillfed

accessibility-testing

This skill provides structured guidance for evaluating web applications against established accessibility standards and WCAG compliance frameworks. Use it to systematically identify barriers, test interactive components, and document findings that help ensure your digital products are usable by everyone.

accessibility-testing provides structured guidance for evaluating web applications against established accessibility standards and WCAG compliance frameworks. It helps you systematically identify barriers in your digital products by testing against WCAG criteria, ensuring that your applications meet the required accessibility benchmarks. The skill enables you to document findings and remediate issues that prevent users with disabilities from accessing your content.

AI-generated summary based on this skill's SKILL.md

299 45 MIT updated by aj-geddes

Install

aj-geddes/useful-ai-prompts/accessibility-testing · repository language: Shell

CLI (skillfed)coming soon
git clone https://github.com/aj-geddes/useful-ai-prompts
cp -r useful-ai-prompts/skills/accessibility-testing ~/.claude/skills/accessibility-testing

Frequently asked questions

AI-generated answers based on this skill's SKILL.md and metadata

How does accessibility-testing help validate web applications for WCAG compliance?

accessibility-testing provides structured guidance for evaluating web applications against established accessibility standards and WCAG compliance frameworks. It helps you systematically identify barriers in your digital products by testing against WCAG criteria, ensuring that your applications meet the required accessibility benchmarks. The skill enables you to document findings and remediate issues that prevent users with disabilities from accessing your content.

What methods does accessibility-testing use for screen reader compatibility testing?

accessibility-testing includes techniques for testing keyboard navigation and screen reader compatibility as core components of your accessibility validation process. By incorporating screen reader testing into your evaluation workflow, you can verify that assistive technologies properly interpret your application's content and functionality. This ensures that users relying on screen readers can navigate and interact with your web application effectively.

Can accessibility-testing be integrated into CI/CD pipelines for automated testing?

Yes, accessibility-testing supports automating accessibility testing in CI/CD pipelines, allowing you to continuously validate compliance throughout your development lifecycle. By integrating accessibility-testing into your automated testing workflows, you can catch accessibility barriers early and prevent them from reaching production. This approach helps maintain consistent accessibility standards across releases and reduces the manual effort required for accessibility audits.

How does accessibility-testing identify and fix accessibility barriers for users with disabilities?

accessibility-testing provides systematic methods to identify and fix accessibility barriers that prevent users with disabilities from accessing your web applications. The skill guides you through testing interactive components, validating semantic HTML, checking ARIA attributes, and assessing focus management. By following these structured approaches, you can discover barriers related to keyboard navigation, color contrast, form accessibility, and other common issues, then implement fixes that improve usability for all users.

What are the key accessibility testing best practices included in accessibility-testing?

accessibility-testing covers accessibility testing best practices and techniques including automated a11y scanning, WCAG violations detection, semantic HTML validation, and assistive technology testing. The skill emphasizes combining automated tools with manual testing to catch issues that automation alone might miss. Best practices covered include testing keyboard navigation, validating ARIA attributes, checking color contrast, and ensuring proper focus management—all essential for creating truly accessible web applications.

Which testing frameworks and tools does accessibility-testing support?

accessibility-testing is compatible with popular accessibility testing frameworks and tools including jest-axe, axe core with Playwright, and Cypress a11y testing integrations. The skill provides guidance on using these tools for web accessibility audits and automated scanning. Whether you're using jest-axe for unit testing, axe core for comprehensive scanning, or Cypress for end-to-end accessibility validation, accessibility-testing helps you leverage these tools effectively within your testing strategy.

SKILL.md

rendered from the published skill — quoted content, verbatim

Accessibility Testing

Table of Contents

Overview

Accessibility testing ensures web applications are usable by people with disabilities, including those using screen readers, keyboard navigation, or other assistive technologies. It validates compliance with WCAG (Web Content Accessibility Guidelines) and identifies barriers to accessibility.

When to Use

  • Validating WCAG 2.1/2.2 compliance
  • Testing keyboard navigation
  • Verifying screen reader compatibility
  • Testing color contrast ratios
  • Validating ARIA attributes
  • Testing form accessibility
  • Ensuring focus management
  • Testing with assistive technologies

Quick Start

Minimal working example:

```typescript // tests/accessibility/homepage.a11y.test.ts import { test, expect } from

(truncated - see the full file via the links below)

Read as markdown · JSON record · Browse the source repository

File tree — 9 files
skills/accessibility-testing/SKILL.md
skills/accessibility-testing/references/aria-testing.md
skills/accessibility-testing/references/axe-core-with-playwright.md
skills/accessibility-testing/references/cypress-accessibility-testing.md
skills/accessibility-testing/references/jest-with-jest-axe.md
skills/accessibility-testing/references/keyboard-navigation-testing.md
skills/accessibility-testing/references/python-with-selenium-and-axe.md
skills/accessibility-testing/scripts/scaffold-tests.sh
skills/accessibility-testing/templates/test-template.js

Related skills

Tags

inclusive-design compliance-automation assistive-tech wcag-standards barrier-detection a11y-ci-integration keyboard-first-testing screen-reader-validation contrast-analysis