Package Exports
- @axe-core/webdriverjs
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@axe-core/webdriverjs) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
@axe-core/webdriverjs
Provides a chainable axe API for Selenium's WebDriverJS and automatically injects into all frames.
Previous versions of this program were maintained at dequelabs/axe-webdriverjs.
Getting Started
Install Node.js if you haven't already. For running axe-webdriverjs tests read more about setting up your environment.
Download and install any necessary browser drivers on your machine's PATH. More on Webdriver setup.
Install Selenium Webdriver: npm install selenium-webdriver --no-save
Install @axe-core/webdriverjs and its dependencies: npm install @axe-core/webdriverjs
Usage
This module uses a chainable API to assist in injecting, configuring and analyzing using aXe with Selenium WebDriverJS. As such, it is required to pass an instance of WebDriver.
Here is an example of a script that will drive Selenium to this repository, perform analysis and then log results to the console.
var AxeBuilder = require('@axe-core/webdriverjs');
var WebDriver = require('selenium-webdriver');
var driver = new WebDriver.Builder().forBrowser('firefox').build();
driver.get('https://dequeuniversity.com/demo/mars/').then(function () {
new AxeBuilder(driver).analyze(function (err, results) {
if (err) {
// Handle error somehow
}
console.log(results);
});
});AxeBuilder(driver:WebDriver[, axeSource:string])
Constructor for the AxeBuilder helper. You must pass an instance of selenium-webdriver as the first and only argument.
var builder = new AxeBuilder(driver);If you wish to run a specific version of axe-core, you can pass the source axe-core source file in as a string. Doing so will mean axe-webdriverjs runs this version of axe-core, instead of the one installed as a dependency of axe-webdriverjs.
var axeSource = fs.readFileSync('./axe-1.0.js', 'utf8');
var builder = new AxeBuilder(driver, axeSource);AxeBuilder#include(selector:String)
Adds a CSS selector to the list of elements to include in analysis
new AxeBuilder(driver).include('.results-panel');AxeBuilder#exclude(selector:String)
Add a CSS selector to the list of elements to exclude from analysis
new AxeBuilder(driver).include('.results-panel').exclude('.results-panel h2');AxeBuilder#options(options:Object)
Specifies options to be used by axe.a11yCheck. Will override any other configured options, including calls to withRules and withTags. See axe-core API documentation for information on its structure.
new AxeBuilder(driver).options({ checks: { 'valid-lang': ['orcish'] } });AxeBuilder#withRules(rules:Mixed)
Limits analysis to only those with the specified rule IDs. Accepts a String of a single rule ID or an Array of multiple rule IDs. Subsequent calls to AxeBuilder#options, AxeBuilder#withRules or AxeBuilder#withRules will override specified options.
new AxeBuilder(driver).withRules('html-lang');new AxeBuilder(driver).withRules(['html-lang', 'image-alt']);AxeBuilder#withTags(tags:Mixed)
Limits analysis to only those with the specified rule IDs. Accepts a String of a single tag or an Array of multiple tags. Subsequent calls to AxeBuilder#options, AxeBuilder#withRules or AxeBuilder#withRules will override specified options.
new AxeBuilder(driver).withTags('wcag2a');new AxeBuilder(driver).withTags(['wcag2a', 'wcag2aa']);AxeBuilder#disableRules(rules:Mixed)
Skips verification of the rules provided. Accepts a String of a single rule ID or an Array of multiple rule IDs. Subsequent calls to AxeBuilder#options, AxeBuilder#disableRules will override specified options.
new AxeBuilder(driver).disableRules('color-contrast');or use it combined with some specified tags:
new AxeBuilder(driver)
.withTags(['wcag2a', 'wcag2aa'])
.disableRules('color-contrast');AxeBuilder#configure(config:Object)
Inject an aXe configuration object to modify the ruleset before running Analyze. Subsequent calls to this
method will invalidate previous ones by calling axe.configure and replacing the config object. See
axe-core API documentation
for documentation on the object structure.
var config = {
checks: [Object],
rules: [Object]
};
new AxeBuilder(driver).configure(config).analyze(function (err, results) {
if (err) {
// Handle error somehow
}
console.log(results);
});AxeBuilder#analyze(callback:Function)
Performs analysis and passes any encountered error and/or the result object to the provided callback function or promise function. Does not chain as the operation is asynchronous
new AxeBuilder(driver).analyze(function (err, results) {
if (err) {
// Handle error somehow
}
console.log(results);
});Using the returned promise (optional):
new AxeBuilder(driver)
.analyze()
.then(function (results) {
console.log(results);
})
.catch(err => {
// Handle error somehow
});Examples
This project has a couple integrations that demonstrate the ability and use of this module:
Contributing
Read the documentation on contributing