Web accessibility testing helper
Loud is a JavaScript library for browser, which helps track regression of accessibility.
Loud ships under terms of the MIT License.
You break HTML pages on elements. Each element you can create in different ways. For example, you can create a button like this (with a little bit of JavaScript):
<i role="button" aria-label="Join"></i>
From accessibility point of view, this is a button. Later, you decide to change the button to something like this:
<button>Join</button>
From accessibility point of view, this is also a button and both buttons are the same.
Loud knows how elements look like from the accessibility point of view. You can use this information to track accessibility regression of your web pages.
Get a release tarball, or clone the repository, or use npm and browserify, or bower:
bower install loud --save-dev
Add ./dist/loud.js
to a testing page:
<script src="/path/to/loud/dist/loud.js"></script>
Test with Loud (using Jasmine, for example):
describe('loud', function() {
beforeEach(function() {
this.button = document.createElement('button');
this.button.innerHTML = 'Join';
document.body.appendChild(this.button);
});
afterEach(function() {
document.body.removeChild(this.button);
});
it('works', function() {
expect(loud.say(this.button)).toEqual(['Join', 'button']);
});
});
Read the full documentation on loud.readthedocs.io.