e2e-axe
v1.0.0
Published
Npm Package which can be used in e2e framework to test accessibility Test
Downloads
8
Readme
E2E Accessibility Node Package
Pre-requisite:
- e2e framework in which you want to this axe
How to install package:
- run command
npm install --global e2e-axe
How to use this package in your e2e-framework :
import { AxeRun } from 'e2e-axe';
describe('Sample Test Case', () => {
it('Sample Test Case Description', () => {
browser.url('https://www.google.co.in/');
...
let axeResults = AxeRun(browser);
})
})