Automated accessibility testing powered by aXe.
Provides Cucumber step definitions and RSpec matchers for auditing accessibility.
Uses the aXe core javascript library for accessibility testing.
We believe that automated testing has an important role to play in achieving digital equality and that in order to do that, it must achieve mainstream adoption by professional web developers. That means that the tests must inspire trust, must be fast, must work everywhere and must be available everywhere.
- Automated accessibility testing rules must have a zero false positive rate
- Automated accessibility testing rules must be lightweight and fast
- Automated accessibility testing rules must work in all modern browsers
- Automated accessibility testing rules must, themselves, be tested automatically
Add this line to your application's Gemfile:
gem 'axe-matchers'
And then execute:
$ bundle install
Or install it yourself as:
$ gem install axe-matchers
A set of step definitions have been provided for accessibility testing through Cucumber, using WebDrivers.
Read the documentation for the Cucumber Integration.
A set of matchers have been provided for accessibility testing through RSpec using WebDrivers.
Read the documentation for the RSpec Integration
The complete list of rules run by axe-core can be found in doc/rule-descriptions.md.
axe-matchers supports Capybara, Selenium, and Watir webdrivers; each tested with Firefox, Chrome, Safari, and PhantomJS. Additionally, capybara-webkit and poltergeist are supported.
Notes:
- Auditing IFrames is not suppored in Poltergeist < 1.8.0. Upgrade to 1.8.0+ or set
skip_iframes=true
inAxe.configure
- Chrome requires ChromeDriver (tested with 2.21)
- Safari requires SafariDriver (tested with 2.48)
Read the documentation on contributing