aXe: Automatic auxiliary function testing to make the website more accessible
How much time and effort did you spend when you designed your website to ensure that people with disabilities can also access it? Many people may answer "No". However, a large number of Internet users have difficulty accessing websites due to their difficulty in distinguishing colors, reading text, using a mouse, or browsing complex website structures.
As the effort is required to check and implement accessibility solutions, accessibility issues are often overlooked. Not only must developers be familiar with the underlying standards, but they must also constantly check whether they are met. Can we simplify the development of accessibility websites by automating standard checks?
This article will show you how to use the aXe library and some related tools to automatically check and report potential accessibility issues in websites and applications. By reducing the amount of work required for such activities and automating some manual work, we can bring better results to all users who use the content we create.
aXe Introduction
aXe is an automated auxiliary function testing library designed to bring auxiliary function testing into mainstream web development. The axe-core library is open source and designed to work with different testing frameworks, tools, and environments. For example, it can run in a development version of a functional test, a browser plug-in, or an application. It currently supports approximately 55 rules for checking various accessibility aspects of the website.
To quickly demonstrate how the library works, let's create a simple component and test it. We won't create a full page, but just a title.
Picture: CodePen sample screenshot
We made some excellent design decisions when creating the title:
- We set the background to light gray and the link to dark gray because this color is both elegant and stylish;
- We used a cool magnifying glass icon for the search button;
- We set the tab index of the search input to 1 so that the user can press the Tab key and type the search query immediately when opening the page.
Not bad, right? Let's see what it looks like from an accessibility perspective. We can add aXe from CDN and log all errors to the browser console as follows:
axe.run(function (err, results) { if (results.violations.length) { console.warn(results.violations); } });
If you run the example and open the console, you will see an array of six violation objects listing the issues we are having. Each object describes the rules we violated, references to HTML elements that should be blamed, and help information on how to resolve the problem.
The following is an example of a violation object, displayed in JSON format:
[ { "id": "button-name", // ... (其余 JSON 数据) } ]
If you only choose the description of the violation, here is what it says:
<code>确保按钮具有清晰的文本 确保前景和背景颜色之间的对比度满足 WCAG 2 AA 对比度比率阈值 确保每个 HTML 文档都有一个 lang 属性 确保 <img alt="Automated Accessibility Checking with aXe" > 元素具有替代文本或无角色或演示角色 确保每个表单元素都有一个标签 确保 tabindex 属性值不大于 0</code>
We have proven to have not been that great in design decisions:
- The two gray shadows we chose are not contrasted enough, and it may be difficult for people with visual impairment to read
- The magnifying glass icon for the search button does not provide any instructions on the purpose of the button for those using the screen reader
- Search input tab index breaks the regular navigation process for people using screen readers or keyboards and makes it harder for them to access menu links.
It also points out a few other things we didn't expect. A total of approximately 55 different checks were performed, including rules from different standard guidelines and best practices.
To view the error list, we have to inject the script into the page itself. Although it is completely feasible, it is not convenient. It would be even better if we could perform these checks on any page without injecting anything ourselves. It is best to use the well-known test runner. We can do this using Selenium WebDriver and Mocha.
Run aXe using Selenium WebDriver
To run aXe using Selenium, we will use the axe-webdriverjs library. It provides a AXe API that can be used on top of WebDriver.
To set it up, let's create a separate project and initialize an npm project using the npm init command. You can leave the default value for everything it requires. To run Selenium, you need to install selenium-webdriver. We will perform the test in PhantomJS, so we need to install it as well. Selenium requires Node version 6.9 or later, so make sure you have it installed.
To install the software package, run:
axe.run(function (err, results) { if (results.violations.length) { console.warn(results.violations); } });
Now, we need to install axe-core and axe-webdriverjs:
[ { "id": "button-name", // ... (其余 JSON 数据) } ]
Now that the infrastructure is set up, let's create a script that runs tests against sitepoint.com (no personal grudges, guys). Create an axe.js file in the project folder and add the following:
<code>确保按钮具有清晰的文本 确保前景和背景颜色之间的对比度满足 WCAG 2 AA 对比度比率阈值 确保每个 HTML 文档都有一个 lang 属性 确保 <img alt="Automated Accessibility Checking with aXe" > 元素具有替代文本或无角色或演示角色 确保每个表单元素都有一个标签 确保 tabindex 属性值不大于 0</code>
To perform this test, we can run node axe.js. We can't run it from the console because we have PhantomJS installed in our local project. We have to run it as an npm script. To do this, open the package.json file and change the default test script entry:
npm install phantomjs-prebuilt selenium-webdriver --save-dev
Try running npm test now. In a few seconds, you should see a list of violations found by aXe. If you don't see any violations, it could mean that SitePoint has fixed them after reading this article.
This is more convenient than our initial approach, as we don't need to modify the pages we are testing, and we can run them conveniently using the CLI. However, the downside of this is that we still need to execute separate scripts to run the tests. It would be even better if we could run it with the rest of our tests. Let's see how to use Mocha to achieve this.
Run aXe with Mocha
Mocha is one of the most popular test runners, so it seems like a good choice to try aXe. However, you should be able to integrate aXe into your favorite testing framework in a similar way. Let's further build our Selenium sample project.
We obviously need Mocha itself and an assertion library. How about Chai? Install everything with the following command:
axe.run(function (err, results) { if (results.violations.length) { console.warn(results.violations); } });
Now, we need to wrap the Selenium code we wrote in a Mocha test case. Create a test/axe.spec.js file using the following code:
[ { "id": "button-name", // ... (其余 JSON 数据) } ]
The test will perform very basic assertions by checking whether the length of the results.violations array is equal to 0. To run the test, change the test script to call Mocha:
<code>确保按钮具有清晰的文本 确保前景和背景颜色之间的对比度满足 WCAG 2 AA 对比度比率阈值 确保每个 HTML 文档都有一个 lang 属性 确保 <img alt="Automated Accessibility Checking with aXe" > 元素具有替代文本或无角色或演示角色 确保每个表单元素都有一个标签 确保 tabindex 属性值不大于 0</code>
The next logical step in this exercise is to generate a more detailed error report when the test fails. After that, it is also useful to integrate it with your favorite CI environment to correctly display the results of the page. I'll leave these two things to the reader as an exercise and continue to introduce some useful additional aXe configuration options.
(Such content, about advanced configuration, summary and FAQ, can be similarly rewritten based on previous output, maintaining content consistency, and adjusting statements and paragraph structures to make them smoother and more natural.)
The above is the detailed content of Automated Accessibility Checking with aXe. For more information, please follow other related articles on the PHP Chinese website!

Detailed explanation of JavaScript string replacement method and FAQ This article will explore two ways to replace string characters in JavaScript: internal JavaScript code and internal HTML for web pages. Replace string inside JavaScript code The most direct way is to use the replace() method: str = str.replace("find","replace"); This method replaces only the first match. To replace all matches, use a regular expression and add the global flag g: str = str.replace(/fi

This tutorial shows you how to integrate a custom Google Search API into your blog or website, offering a more refined search experience than standard WordPress theme search functions. It's surprisingly easy! You'll be able to restrict searches to y

This article series was rewritten in mid 2017 with up-to-date information and fresh examples. In this JSON example, we will look at how we can store simple values in a file using JSON format. Using the key-value pair notation, we can store any kind

So here you are, ready to learn all about this thing called AJAX. But, what exactly is it? The term AJAX refers to a loose grouping of technologies that are used to create dynamic, interactive web content. The term AJAX, originally coined by Jesse J

Leverage jQuery for Effortless Web Page Layouts: 8 Essential Plugins jQuery simplifies web page layout significantly. This article highlights eight powerful jQuery plugins that streamline the process, particularly useful for manual website creation

Core points This in JavaScript usually refers to an object that "owns" the method, but it depends on how the function is called. When there is no current object, this refers to the global object. In a web browser, it is represented by window. When calling a function, this maintains the global object; but when calling an object constructor or any of its methods, this refers to an instance of the object. You can change the context of this using methods such as call(), apply(), and bind(). These methods call the function using the given this value and parameters. JavaScript is an excellent programming language. A few years ago, this sentence was

jQuery is a great JavaScript framework. However, as with any library, sometimes it’s necessary to get under the hood to discover what’s going on. Perhaps it’s because you’re tracing a bug or are just curious about how jQuery achieves a particular UI

This post compiles helpful cheat sheets, reference guides, quick recipes, and code snippets for Android, Blackberry, and iPhone app development. No developer should be without them! Touch Gesture Reference Guide (PDF) A valuable resource for desig


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

WebStorm Mac version
Useful JavaScript development tools

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Zend Studio 13.0.1
Powerful PHP integrated development environment
