nightwatch
Version:
Easy to use Node.js based end-to-end testing solution for web applications using the W3C WebDriver API.
29 lines (28 loc) • 842 B
JavaScript
/**
* Injects the [axe-core](https://github.com/dequelabs/axe-core) js library into the current page (using the `.executeScript()` command).
*
* To be paired with `.axeRun()` to evaluate the axe-core accessibility rules.
*
* @example
* describe('accessibility testing', function () {
* it('accessibility rule subset', function (browser) {
* browser
* .url('https://www.w3.org/WAI/demos/bad/after/home.html')
* .assert.titleEquals('Welcome to CityLights! [Accessible Home Page]')
* .axeInject()
* .axeRun('body', {
* runOnly: ['color-contrast', 'image-alt'],
* });
* });
* });
*
* @method axeInject
* @syntax browser.axeInject()
* @api protocol.accessibility
* @since 2.3.6
*/
module.exports = class AxeInjectAbstract {
static get allowOverride() {
return true;
}
};