-
Notifications
You must be signed in to change notification settings - Fork 6.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Run accessibility audit on CI #262
Comments
We can use Protractor-accessibility-plugin ? adding this to protractor.conf.js |
if this is okay. I will do a PR for this :) @jelbourn |
I think that makes sense. I'm not in position to confirm this, but I think a PR is always welcome, if it's not too much effort for you. btw: I'm working a PR which uses Axe Core. So our work will not interfere :) |
Okay then 👍 |
In the long term we probably just want to go with one a11y assertion system, but it could be good to compare them initially. |
@jelbourn I think both a11y assertion systems are powerful. When I see the simplicity of the protractor plugin, I think this one is way easier to handle. I already got Axe Core running on the e2e app as well. To get Axe Core running, we have to
Maybe @marcysutton can help in this case, and explain whats different about axe :) |
The Protractor plugin will only run the A11y checks once at the end of a test and it won't let you specify an HTML fragment to test against (it tests the whole page). aXe, on the other hand, will allow you to run checks whenever the UI has changed within a set of tests and even test a DOM subtree. The Chrome A11y Developer tools are also a smaller, noisier ruleset than aXe, and Tenon requires an API key and paid account. Here are a few questions you should consider:
|
I'd actually like to have tests fail when the a11y audit encounters an issue. |
You can easily do that, it just might take some more logging to make the failure understandable. Here is an example: https://github.com/marcysutton/axe-webdriverjs-demo/blob/master/spec/test.js#L54 |
Yeah, that seems like a good area for some custom jasmine matchers. |
@jelbourn I already got that working without the custom webdriver of the axe-core library. It as bit messy at the moment, because it's just a WIP branch (on vacation) I'm looking for some good designs, to represent the violations.
|
Protractor tests fail when there are any accessibility issues. |
Closing this, because #2010 just landed in |
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
Tools to explore:
Chrome tools: https://github.com/GoogleChrome/accessibility-developer-tools
aXe: http://www.deque.com/products/axe/
The audit should run on the e2e examples.
The text was updated successfully, but these errors were encountered: