The Web Content Accessibility Guidelines (WCAG) are part of a series of web accessibility guidelines published by the Web Accessibility Initiative (WAI) of the World Wide Web Consortium (W3C). WCAG 2.1 became a W3C Recommendation in 2018.
While GDS Accessibility team found that a large proportion of issues are not found by automated testing, it can help to establish a baseline with virtually no effort no include and run.
It’s a well-known statement that automated testing does not make your app fully accessible. You still do need to test the interface with assistive technologies such as VoiceOver or NVDA.
- Tenon.
- HTML_CodeSniffer.
- Google accessibility developer tools (deprectaed)
- Web AIM color contrast checker
- Google Lighthouse accessibility audit.
It's important that teams don't rely on them heaviliy. No tool will be able to pick up every accessibility barrier and even if they do, sometimes the results they give will be inconclusive or require further investigation.
There are many tools that can help React developers to test accessibility in their code.
- axe-core: Test the accessibility of the rendered DOM and highlight accessibility issues.
- jest-axe: Custom Jest matcher for axe testing accessibility.
- eslint-plugin-jsx-a11y: Runs a static analysis of the JSX.
- cypress-axe: axe support for Cypress E2E.
- axe-testcafe and @testcafe-community/axe: axe support for TestCafe E2E.
Code style will give us useful insights such as the following examples found in live code.
Consider the following code:
<a role="link" aria-label="custom-link">
{children}
</a>
Default rules will warn us about:
1:3 error The href attribute is required for an anchor to be keyboard accessible. Provide a valid, navigable address as the href value. If you cannot provide an href, but still need the element to resemble a link, use a button and change it with appropriate styles. Learn more: jsx-a11y/anchor-is-valid
This can be fixed with the following refactor:
<a role="button" aria-label="custom-link">
{children}
</a>
Consider the following code:
export const LinkHandler: React.FC<LinkHandlerProps> = ({
children,
link,
...props
}) => {
const onClick = (e: React.MouseEvent<HTMLDivElement>): void => {
if (link) {
if (e.metaKey) {
window.open(link);
return;
}
window.location.href = link;
}
};
return (
<div onClick={onClick} {...props}>
{children}
</div>
);
};
Default rules will warn us about:
16:5 error Visible, non-interactive elements with click handlers must have at least one keyboard listener jsx-a11y/click-events-have-key-events
16:5 error Avoid non-native interactive elements. If using native HTML is not possible, add an appropriate role and support for tabbing, mouse, keyboard, and touch inputs to an interactive content element jsx-a11y/no-static-element-interactions
This can be fixed with the following refactor:
export const LinkHandler: React.FC<LinkHandlerProps> = ({
children,
link,
...props
}) => {
const onClick = (e: React.MouseEvent<HTMLDivElement>): void => {
if (link) {
if (e.metaKey) {
window.open(link);
return;
}
window.location.href = link;
}
};
const onKeyDown = (): void => {
if (link) {
window.location.href = link;
}
};
return (
<div
onClick={onClick}
{...props}
onKeyPress={onKeyDown}
role="link"
tabIndex={0}
>
{children}
</div>
);
};
You can test your components in storybook by using addon-a11y.
A new tab “Accessibility” will be added to your components' stories. You can see “Violations”, “Passes” and “Incomplete” checks.
jest-axe provides a custom Jest matcher for axe. It should provide support for unit testing a good amount of accessibility rules.
Using the assertions provided with jest-axe in combination with the storybook accessibility plugin provides a robust mechanisms for defining and validating a baseline of accessibility good practices.
For example, it might warn us about violations such as:
"Form elements should have a visible label (label-title-only)"
Fix all of the following:
Only title used to generate label for form element
More information here: gov.uk case study.
There's a large number of accessibility barriers that won't be detected by automated testing. Therefore, it is advised to combine automated tool testing with manual checking, an accessibility audit, and user testing.
More information here: Gov.uk, testing with asssistive technologies.
Your service should work with a combination of assistive technologies and browsers. You can base your testing on some public available surveys like WebAIM screen reader survey or make your own accessibility audit.
Recommended combinations are:
- JAWS (desktop screen reader) + Chrome or Edge (latest).
- NVDA (desktop screen reader) + Chrome or Edge (latest).
- VoiceOver on iOS (mobile screen reader) + Safari (12 or later).
- TalkBaclk (mobile screen reader) + Chrome (latest).
- Windows Magnifier or Apple Zoom (screen magnifiers) + Any browser (latest).
- Dragon (speech recognition) - Chrome (latest).
- Windows high contrast mode - Any browser (latest).
You should be able to:
- Read every element and header.
- Tab through every link.
- Checke very landmark, for example footer and any navigation.
- Check use of Accessible Rich Internet Applicatios (ARIA).
- Fill in any editable fields.
Test up to at least 4 times magnification:
- Spacing between elements.
- Page elements display consistently on different page layouts.
- Users know when something happens outside the viewport.
You should be able to:
- Navigate to each feature.
- Activate every link, button, or interactive element.
- Fill in any editable fields.