百科.dev
全部条目AI 编程趋势榜开源项目技术资讯提交条目
登录
< 返回工具列表
E

equal-access

> 测试质量
开源

IBM Equal Access 可访性检查器包含可自动从浏览器或持续开发/构建环境中进行可访性检查的工具

768 stars0 点赞2 次浏览
访问官网GitHub

工具介绍

IBM Equal Access 可访性检查器包含可自动从浏览器或持续开发/构建环境中进行可访性检查的工具

equal-access

This Git repository hosts tools and supporting components of the IBM Equal Access Toolkit. The Toolkit provides the tools and guidance to create experiences that are delightful for people of all abilities. The guidance is organized by phase, such as Plan, Design, Develop, and Verify, and explains how to integrate these automated testing tools into the Verify phase. The Toolkit is a major part of the accessibility information and applications at ibm.com/able.

Overview

This README covers topics for users who want to find and install the deployed tools as well as topics for developers who want to better understand the various components and build the tools themselves.

The wiki contains overview information, links to videos, and other resources. See the Release Notes for the latest deployed changes in the tools, rules, and components.

Usage

The tools have been deployed to the browser and NPM stores so they can be easily downloaded and installed.

Browser extensions

The browser extensions provide an integrated checking experience and visualizations to help users quickly identify the source of accessibility issues and try fixes:

  • Chrome Web Store extension : web browser extension that integrates automated accessibility checking capabilities into the Chrome Developer Tools.
  • Firefox Add-on extension : web browser extension that integrates automated accessibility checking capabilities into the Firefox Web Developer Tools.
  • Edge Add-on extension : web browser extension that integrates automated accessibility checking capabilities into the Edge Developer Tools.

Automated testing packages

  • Node accessibility-checker: automated accessibility testing within a continuous integration pipeline, such as Travis CI for Node-based test environments, that works with test frameworks such as Selenium, Puppeteer, and Playwright; and provides the ability to validate results against baseline files, and scan local files.
  • Cypress-accessibility-checker: wrapper of the accessibility-checker in the Cypress environment.

Requirements for building the tools

  • Node Version 22.

Clone Repository

$ git clone --branch=master https://github.com/IBMa/equal-access.git
$ cd equal-access

or with SSH

$ git clone --branch=master [email protected]:IBMa/equal-access.git
$ cd equal-access

Install dependencies

Under the equal-access directory

npm install

Now you can select the tool you want to build and follow the tool's README instructions located in its sub-directory.

What's in this repository?

Please review the README of the selected tool for more information specific to that tool

Tools

  • accessibility-checker-extension/README: A web developer tools browser extension that adds automated accessibility checking capabilities
  • accessibility-checker/README: Automated accessibility testing for Node-based test environments, the ability to validate results against baseline files, and scan local files
  • cypress-accessibility-checker/README: Wrapper of accessibility-checker for the Cypress environment

Components

  • accessibility-checker-engine/README: accessibility rules and evaluation engine used by
  • rule-server/README: deploys the rules and engine for usage by the tools

Build

Build all the tools and components from the root directory or build each individual tool separately.

Build all the tools from root directory

cd to equal-access if you are not already in the root directory, then run:

$ npm install
$ npm run build

All the following libraries or tools are built by running the above commands

  • In the equal-access/accessibility-checker-engine/dist directory
    • ace-debug.js: uncompressed javascript to be used in a browser environment for development
    • ace.js: compressed javascript to be used in a browser environment for production
    • ace-node-debug.js: uncompressed javascript library to be used in a NodeJS environment for development
    • ace-node.js: compressed javascript library to be used in a NodeJS environment for production
  • In the equal-access/accessibility-checker/package directory
    • JavaScript source that can be installed or deployed as npm package that works with an HTML parsing engines, such as Selenium, Puppeteer, or Playwright to allow developers to perform integrated accessibility testing within a continuous integration pipeline, such as Travis CI. Please view more details.

Build each individual tool separately

Please check the README for each individual tool for its build instructions:

  • accessibility-checker-engine/README
  • accessibility-checker-extension/README
  • accessibility-checker/README
  • cypress-accessibility-checker/README

Feedback and reporting bugs

If you think you've found a bug, have questions or suggestions, open a GitHub Issue. If you are an IBM employee, feel free to ask questions in the IBM internal Slack channel #accessibility-at-ibm.

License

Issues· 0 开放

查看全部 Issues在 GitHub 打开

暂无开放 Issues,或尚未同步最近议题。

> 标签

JavaScriptaccessibilityaccessibility-automationaccessibility-checkeraccessibility-testing

暂无评论,来聊聊你的看法吧

> 工具信息

发布日期2026年8月1日
最后更新2026年9月17日
分类测试质量
定价开源

> 相关工具

J
Jest
JavaScript 测试框架
P
Playwright
现代端到端测试框架
E
eslint-plugin-test-selectors
Enforces that data-test-id attributes are added to interactive DOM elements (JSX) to help with UI testing. JSX only.