Analyze a Web Page
Using the Axe DevTools CLI to scan one or more web pages for accessibility issues
Not for use with personal data
Axe DevTools CLI can be used to test one or more pages at a time.
The following command will run axe DevTools CLI on the example page. By default, axe DevTools CLI will use Firefox, using the latest version of axe-core, running the WCAG 2.0 AA ruleset, and outputting scan results to std-out.
axe https://example.com/Fetching a multiple pages with output going to the std-out console.
axe https://example.com/ https://example.com/about.htmlTest a single page and save the results as a JSON file called axe-results.json in the current directory.
axe https://example.com/ --save=./axe-results.jsonTest a single page and generate an HTML report in the ./axe-reports/ directory.
axe https://example.com/ --report=./axe-reports/