capybara-accessible introduces accessibility tests into your Rspec integration tests, helping you to capture existing failures and prevent future regressions.
It works by defining a custom webdriver that runs Google's Accessibility Developer Tools audits during each test run. Since the audits are invoked automatically on page load, you do not need to make explicit assertions on accessibility. Instead, the test will simply fail with a message indicating the failures, like so:
Some of the audit rules that are included from Google's Accessibility Developer Tools:
- minimum color contrast
- label associations with inputs
- presence of alt attributes
- valid use of ARIA roles
See the Google Accessibility Developer Tools wiki for a full list of rules.
Visit the capybara-accessible wiki for background on why and how we built capybara-accessible.
Add gem 'capybara-accessible' to your application's Gemfile and run bundle on the command line.
You can use capybara-accessible as a drop-in replacement for Rack::Test, Selenium or capybara-webkit drivers for Capybara.
Simply set the driver in spec/spec_helper.rb or features/support/env.rb:
require 'capybara/rspec'
require 'capybara/accessible'
Capybara.default_driver = :accessible
Capybara.javascript_driver = :accessible
We suggest that you use pry-rescue with pry-stack_explorer to debug the accessibility failures in the DOM. pry-rescue will open a debugging session at the first exception, pausing the driver so that you can inspect the page.
You can disable audits on individual tests by tagging the example or group with inaccessible.
# spec/spec_helper.rb
RSpec.configure do |config|
config.around(:each, inaccessible: true) do |example|
Capybara::Accessible.skip_audit { example.run }
end
end
# spec/features/inaccessible_page_spec.rb
# Page loads in examples tagged as inaccessible will not trigger an audit.
# All other assertions will be made.
feature '/inaccessible', inaccessible: true do
scenario 'displays an image' do
page.should have_css 'img' # this assertion will still be executed
end
end
# features/support/env.rb
Around('@inaccessible') do |scenario, block|
Capybara::Accessible.skip_audit { block.call }
end
# features/inaccessible_page.feature
# Page loads in examples tagged as inaccessible will not trigger an audit.
# All other assertions will be made.
@inaccessible
Scenario: Visiting a page that is inaccessible
When I visit a page that is inaccessible
Then I should see the inaccessible image # this assertion will still be executed
If you think you've found a bug, or have installation questions or feature requests, please send a message to the mailing list.
If you are commenting on the audit rules and failure messages, please check out the Google Accessibility Developer Tools Project, and review their guidelines for reporting issues.
NOTE: axs_testing.js is a generated file from Google's Accessibility Developer Tools. If you'd like to contribute to the audit rules, please fork their Github project.
