enable-a11y
v1.4.0
Published
Demonstration code of aria roles so developers can study the examples and implement aria roles in their own projects.
Downloads
18
Maintainers
Readme
enable-a11y
A place to learn and share with developers what makes web work accessible. This includes a list of demos to show how aria roles function with screen readers.
Getting Started
Prerequisite Installations
- nvm: A Node version manager. It allows you to install several versions of node on the same machine and change versions easily.
- Here are instructions in how to install nvm
- After installing nvm, install a Node version >= 18 using nvm, ideally
nvm install 20.11.0
- npm: a Node Package Manager, usually installed alongside Node
- More info: Downloading and installing Node.js and NPM
- Lynx: A text-only browser used for testing for how a website will work without graphics turned on.
- Install options:
- Download from browser
- Install using homebrew:
brew install lynx
- Install using MacPorts:
sudo port install lynx
- Install on Ubuntu:
sudo apt install lynx
- Install options:
- PHP (version > 8.1)
- Install options:
- Install from browser
- Install using homebrew:
brew install php
- Install using MacPorts:
sudo port install php
- Install on Ubuntu:
sudo apt install php8.1
- You can find the path to the installed PHP using
which php
. Add that path to your terminal profile's PATH environment value and/or VS Code settings.
- Install options:
- Java: required in order to use the v.Nu checker during automation and unit testing
Note: Any changes to these prerequisites will need to be reflected in the GitHub Actions in order to run the CI/CD checks.
Optional installations (since npm run server
will run an express server)
- MAMP (OSX) or Apache: https://www.mamp.info/en/mac/
- LAMP (Linux): https://www.linux.com/training-tutorials/easy-lamp-server-installation/
Setup
Run the following commands in your Terminal or Terminal equivalent program:
git clone [email protected]:PublicisSapient/enable-a11y.git cd enable-a11y npm clean-install
Note: Using
clean-install
instead of justinstall
installs the exact package versions listed in the package-lock.json, and therefore has guaranteed compatibility.Start the local server using:
npm run start
Open http://localhost:8888 in your browser to see the local version of the site.
Make sure everything is installed correctly by running the automated tests using
npm run test
.See the Chromedriver issues section if you encounter an error related to Chromedriver.
Tests
Tools used for testing
- v.Nu: The Nu HTML Checker is used to catch unintended mistakes in the HTML, CSS, and SVG.
- Axe CLI: Uses a browser webdriver to open pages and run accessibility tests on it.
- pa11y CLI: Uses Puppeteer to run its own headless Chrome browser to run accessibility tests.
- Jest + Puppeteer: Used to run and validate code in unit tests.
Read the Enable Code Quality article for the full details behind the testing tools being used and how.
Commands
- Run all tests:
npm run test
- Run only the Jest + Puppeteer unit tests:
npm run jest
- Run only the v.Nu, Axe, and Pa11y tests:
npm run lint
- Run only the v.Nu tests:
npm run test-vnu
- Run only the Axe tests:
npm run test-axe
- Run only the Pa11y tests:
npm run test-pa11y
If you are noticing that the jest tests are taking a long time, you might want to run npm run jest-debug-memory-leak
. If the heap size for each test group increases a lot, there is a memory leak in the tests. More information about that can be found at in the article Your Jest Tests are Leaking Memory by David Chanin
Hint: Make sure the local server is running first using the
npm run start
command.
Chromedriver issues
Your version of Chrome needs to match the chromedriver
package version. You can find your version of Chrome (ie. 121.x.xxxx.xxx) by checking the version number inside the "About Chrome" dialog in Chrome.
If there is a problem with running Chromedriver, because you have an error like "SessionNotCreatedError: session not created: This version of ChromeDriver only supports Chrome version XXX", then you should ensure your chromedriver is installed with the right version.
You can change the version of chromedriver installed with this project by using npm install -D chromedriver@XXX
, and replacing XXX with the same version of Chrome you already have installed (ie. npm install -D chromedriver@121
).
Links at the Chrome for Testing availability webpage allow you to download a separate "Chrome for Testing" application, and/or the associated chromedriver files.
You can also download a chromedriver version zip file from here: https://chromedriver.storage.googleapis.com/index.html and then install it using:
npm install -D chromedriver --chromedriver_filepath=/path/to/chromedriver_mac64.zip
(you may need to change the PATH
variable)
If you still have problems with Chromedriver, you may want to read the Stack Overflow article Session Not Created: This version of ChromeDriver only supports Chrome version 98.
Style Notes
All font-sizes are converted to rems. This is done via LESS. If you want a font-size of 20px, then you would do the following:
div { font-size: (20/@px); }
The
@px
variable is set to 16rem, which is also the base font sizeIf we hide custom components and use CSS to create custom facades for them, we must ensure that these facades will be discoverable to users navigating by touch. For more information about being inclusive of users navigating by touch, please read Inclusively Hiding & Styling Checkboxes and Radio Buttons by Sara Soueidan.
Adding An External NPM Module To The Front-End Code
If you are adding examples to this repository and need support of an external NPM module for the front-end (like a JavaScript library), then you should add the library to the nodeFiles
array in the file promote-node-modules-to-server.js
.
For example, when I added the glider-js
library to Enable so I can use it in the Carousel demos, I added the files I needed for the front-end to nodeFiles
with these two lines:
When you start the project with npm run server
, the files in the nodeFiles
array will be placed in the enable-node-libs
directory in the project root. Use this directory to load the files in your scripts, css, or HTML files.
References
When testing using screen readers, these resources may be of help to you: