Code Monkey home page Code Monkey logo

pa11y-ci's Introduction

Pa11y

Pa11y is your automated accessibility testing pal. It runs accessibility tests on your pages via the command line or Node.js, so you can automate your testing process.

NPM version Node.js version support Build status LGPL-3.0-only licensed

On the command line:

pa11y https://example.com

In JavaScript:

const pa11y = require('pa11y');

pa11y('https://example.com').then((results) => {
    // Use the results
});

Requirements

Pa11y 8 requires Node.js 18 or 20. An older version of Node.js can be used with Pa11y 6 or below.

Linux and macOS

To install Node.js you can use nvm. For example, to install with nvm with Homebrew, and then install the latest version of Node:

brew install nvm
nvm install node
nvm install-latest-npm

Alternatively, download a pre-built package from the Node.js website for your operating system.

Windows

On Windows 10, download a pre-built package from the Node.js website. Pa11y will be usable via the bundled Node.js application as well as the Windows command prompt.

Command-line interface

Install Pa11y globally with npm:

npm install -g pa11y
$ pa11y --help

Usage: pa11y [options] <url>

  Options:

    -V, --version                  output the version number
    -n, --environment              output details about the environment Pa11y will run in
    -s, --standard <name>          the accessibility standard to use: WCAG2A, WCAG2AA (default), WCAG2AAA – only used by htmlcs runner
    -r, --reporter <reporter>      the reporter to use: cli (default), csv, json
    -e, --runner <runner>          the test runners to use: htmlcs (default), axe
    -l, --level <level>            the level of issue to fail on (exit with code 2): error, warning, notice
    -T, --threshold <number>       permit this number of errors, warnings, or notices, otherwise fail with exit code 2
    -i, --ignore <ignore>          types and codes of issues to ignore, a repeatable value or separated by semi-colons
    --include-notices              Include notices in the report
    --include-warnings             Include warnings in the report
    -R, --root-element <selector>  a CSS selector used to limit which part of a page is tested
    -E, --hide-elements <hide>     a CSS selector to hide elements from testing, selectors can be comma separated
    -c, --config <path>            a JSON or JavaScript config file
    -t, --timeout <ms>             the timeout in milliseconds
    -w, --wait <ms>                the time to wait before running tests in milliseconds
    -d, --debug                    output debug messages
    -S, --screen-capture <path>    a path to save a screen capture of the page to
    -A, --add-rule <rule>          WCAG 2.1 rules to include, a repeatable value or separated by semi-colons – only used by htmlcs runner
    -h, --help                     output usage information

Testing with pa11y

Find accessibility issues at a URL:

pa11y https://example.com

The default test runner is HTML_CodeSniffer, but axe is also supported. To use axe:

pa11y https://example.com --runner axe

Use both axe and HTML_CodeSniffer in the same run:

pa11y https://example.com --runner axe --runner htmlcs

Generate results in CSV format, and output to a file, report.csv:

pa11y https://example.com > report.csv --reporter csv 

Find accessibility issues in a local HTML file (absolute paths only, not relative):

pa11y ./path/to/your/file.html

Exit codes

The command-line tool uses the following exit codes:

  • 0: Pa11y ran successfully, and there are no errors
  • 1: Pa11y failed run due to a technical fault
  • 2: Pa11y ran successfully but there are errors in the page

By default, only accessibility issues with a type of error will exit with a code of 2. This is configurable with the --level flag which can be set to one of the following:

  • error: exit with a code of 2 on errors only, exit with a code of 0 on warnings and notices
  • warning: exit with a code of 2 on errors and warnings, exit with a code of 0 on notices
  • notice: exit with a code of 2 on errors, warnings, and notices
  • none: always exit with a code of 0

Command-line configuration

The command-line tool can be configured with a JSON file as well as arguments. By default it will look for a pa11y.json file in the current directory, but you can change this with the --config flag:

pa11y https://example.com --config ./path/to/config.json 

If any configuration is set both in a configuration file and also as a command-line option, the value set in the latter will take priority.

For more information on configuring Pa11y, see the configuration documentation.

Ignoring

The ignore flag can be used in several different ways. Separated by semi-colons:

pa11y https://example.com --ignore "issue-code-1;issue-code-2" 

or by using the flag multiple times:

pa11y https://example.com --ignore issue-code-1 --ignore issue-code-2 

Pa11y can also ignore notices, warnings, and errors up to a threshold number. This might be useful if you're using CI and don't want to break your build. The following example will return exit code 0 on a page with 9 errors, and return exit code 2 on a page with 10 or more errors.

pa11y https://example.com --threshold 10 

Reporters

The command-line tool can provide test results in a few different ways using the --reporter flag. The built-in reporters are:

  • cli: output test results in a human-readable format
  • csv: output test results as comma-separated values
  • html: output test results as an HTML page
  • json: output test results as a JSON array
  • tsv: output test results as tab-separated values

You can also write and publish your own reporters. Pa11y looks for reporters in your node_modules folder (with a naming pattern), and the current working directory. The first reporter found will be loaded. So with this command:

pa11y https://example.com --reporter rainbows 

The following locations will be checked:

<cwd>/node_modules/pa11y-reporter-rainbows
<cwd>/rainbows

A Pa11y reporter must export a string property named supports. This is a semver range which indicates which versions of Pa11y the reporter supports:

exports.supports = '^8.0.0';

A reporter should export the following methods, each returning one string. If your reporter needs to perform asynchronous operations, then it may return a promise which resolves to a string:

begin(); // Called when pa11y starts
error(message); // Called when a technical error is reported
debug(message); // Called when a debug message is reported
info(message); // Called when an information message is reported
results(results); // Called with a test run's results

JavaScript interface

Add Pa11y to your project with npm, most commonly as a development dependency:

npm install pa11y --save-dev

Require Pa11y:

const pa11y = require('pa11y');

Run Pa11y against a URL, the pa11y function returns a Promise:

pa11y(url).then((results) => {
    // Use the results
});

Pa11y can also be run with options:

const options = { /* ... */ };
pa11y(url, options)).then((results) => {
    // Use the results
});

Pa11y resolves with a results object, containing details about the page, and an array of accessibility issues found by the test runner:

{
    pageUrl: 'The tested URL',
    documentTitle: 'Title of the page under test',
    issues: [
        {
            code: 'WCAG2AA.Principle1.Guideline1_1.1_1_1.H30.2',
            context: '<a href="https://example.com/"><img src="example.jpg" alt=""/></a>',
            message: 'Img element is the only content of the link, but is missing alt text. The alt text should describe the purpose of the link.',
            selector: 'html > body > p:nth-child(1) > a',
            type: 'error',
            typeCode: 1
        }
    ]
}

Transforming the results

If you wish to transform these results with a command-line reporter, require it into your code. The csv, tsv, html, json, and markdown reporters each expose a method process:

// Assuming you've already run tests, and the results
// are available in a `results` variable:
const htmlReporter = require('pa11y/lib/reporters/html');
const html = await htmlReporter.results(results);

async/await

Pa11y uses promises, so you can use async functions and the await keyword:

async function runPa11y() {
    try {
        const results = await pa11y(url);
        // Use the results
    }
    catch (error) {
        // Handle error
    }
}

runPa11y();

Callback interface

For those who prefer callbacks to promises:

pa11y(url, (error, results) => {
    // Use results, handle error
});

Validating actions

Pa11y's isValidAction function can be used to validate an action string ahead of its use:

pa11y.isValidAction('click element #submit');  // true
pa11y.isValidAction('open the pod bay doors'); // false

Configuration

Pa11y has lots of options you can use to change the way Headless Chrome runs, or the way your page is loaded. Options can be set either as a parameter on the pa11y function or in a JSON configuration file. Some are also available directly as command-line options.

Below is a reference of all the options that are available:

actions (array)

Actions to be run before Pa11y tests the page. There are quite a few different actions available in Pa11y, the Actions documentation outlines each of them.

pa11y(url, {
    actions: [
        'set field #username to exampleUser',
        'set field #password to password1234',
        'click element #submit',
        'wait for path to be /myaccount'
    ]
});

Defaults to an empty array.

browser (Browser) and page (Page)

A Puppeteer Browser instance which will be used in the test run. Optionally you may also supply a Puppeteer Page instance, but this cannot be used between test runs as event listeners would be bound multiple times.

If either of these options are provided then there are several things you need to consider:

  1. Pa11y's chromeLaunchConfig option will be ignored, you'll need to pass this configuration in when you create your Browser instance
  2. Pa11y will not automatically close the Browser when the tests have finished running, you will need to do this yourself if you need the Node.js process to exit
  3. It's important that you use a version of Puppeteer that meets the range specified in Pa11y's package.json
  4. You cannot reuse page instances between multiple test runs, doing so will result in an error. The page option allows you to do things like take screen-shots on a Pa11y failure or execute your own JavaScript before Pa11y

Note: This is an advanced option. If you're using this, please mention in any issues you open on Pa11y and double-check that the Puppeteer version you're using matches Pa11y's.

const browser = await puppeteer.launch({
    ignoreHTTPSErrors: true
});

pa11y(url, {
    browser: browser
});

browser.close();

A more complete example can be found in the puppeteer examples.

Defaults to null.

chromeLaunchConfig (object)

Launch options for the Headless Chrome instance. See the Puppeteer documentation for more information.

pa11y(url, {
    chromeLaunchConfig: {
        executablePath: '/path/to/Chrome',
        ignoreHTTPSErrors: false
    }
});

Defaults to:

{
    ignoreHTTPSErrors: true
}

headers (object)

A key-value map of request headers to send when testing a web page.

pa11y(url, {
    headers: {
        Cookie: 'foo=bar'
    }
});

Defaults to an empty object.

hideElements (string)

A CSS selector to hide elements from testing, selectors can be comma separated. Elements matching this selector will be hidden from testing by styling them with visibility: hidden.

pa11y(url, {
    hideElements: '.advert, #modal, div[aria-role=presentation]'
});

ignore (array)

An array of result codes and types that you'd like to ignore. You can find the codes for each rule in the console output and the types are error, warning, and notice. Note: warning and notice messages are ignored by default.

pa11y(url, {
    ignore: [
        'WCAG2AA.Principle3.Guideline3_1.3_1_1.H57.2'
    ]
});

Defaults to an empty array.

ignoreUrl (boolean)

Whether to use the provided Puppeteer Page instance as is or use the provided url. Both the Puppeteer Page instance and the Puppeteer Browser instance are required alongside ignoreUrl.

const browser = await puppeteer.launch();
const page = await browser.newPage();

pa11y(url, {
    ignoreUrl: true,
    page: page,
    browser: browser
});

Defaults to false.

includeNotices (boolean)

Whether to include results with a type of notice in the Pa11y report. Issues with a type of notice are not directly actionable and so they are excluded by default. You can include them by using this option:

pa11y(url, {
    includeNotices: true
});

Defaults to false.

includeWarnings (boolean)

Whether to include results with a type of warning in the Pa11y report. Issues with a type of warning are not directly actionable and so they are excluded by default. You can include them by using this option:

pa11y(url, {
    includeWarnings: true
});

Defaults to false.

level (string)

The level of issue which can fail the test (and cause it to exit with code 2) when running via the CLI. This should be one of error (the default), warning, or notice.

{
    "level": "warning"
}

Defaults to error. Note this configuration is only available when using Pa11y on the command line, not via the JavaScript Interface.

log (object)

An object which implements the methods debug, error, and info which will be used to report errors and test information.

pa11y(url, {
    log: {
        debug: console.log,
        error: console.error,
        info: console.info
    }
});

Each of these defaults to an empty function.

method (string)

The HTTP method to use when running Pa11y.

pa11y(url, {
    method: 'POST'
});

Defaults to GET.

postData (string)

The HTTP POST data to send when running Pa11y. This should be combined with a Content-Type header. E.g to send form data:

pa11y(url, {
    headers: {
        'Content-Type': 'application/x-www-form-urlencoded'
    },
    method: 'POST',
    postData: 'foo=bar&bar=baz'
});

Or to send JSON data:

pa11y(url, {
    headers: {
        'Content-Type': 'application/json'
    },
    method: 'POST',
    postData: '{"foo": "bar", "bar": "baz"}'
});

Defaults to null.

reporter (string)

The reporter to use while running the test via the CLI. More about reporters.

{
    "reporter": "json"
}

Defaults to cli. Note this configuration is only available when using Pa11y on the command line, not via the JavaScript Interface.

rootElement (element)

The root element for testing a subset of the page opposed to the full document.

pa11y(url, {
    rootElement: '#main'
});

Defaults to null, meaning the full document will be tested. If the specified root element isn't found, the full document will be tested.

runners (array)

An array of runner names which correspond to existing and installed Pa11y runners. If a runner is not found then Pa11y will error.

pa11y(url, {
    runners: [
        'axe',
        'htmlcs'
    ]
});

Defaults to:

[
    'htmlcs'
]

rules (array)

An array of WCAG 2.1 guidelines that you'd like to include to the current standard. You can find the codes for each guideline in the HTML Code Sniffer WCAG2AAA ruleset. Note: only used by htmlcs runner.

pa11y(url, {
    rules: [
        'Principle1.Guideline1_3.1_3_1_AAA'
    ]
});

screenCapture (string)

A file path to save a screen capture of the tested page to. The screen will be captured immediately after the Pa11y tests have run so that you can verify that the expected page was tested.

pa11y(url, {
    screenCapture: `${__dirname}/my-screen-capture.png`
});

Defaults to null, meaning the screen will not be captured. Note the directory part of this path must be an existing directory in the file system – Pa11y will not create this for you.

standard (string)

The accessibility standard to use when testing pages. This should be one of WCAG2A, WCAG2AA, or WCAG2AAA. Note: only used by htmlcs runner.

pa11y(url, {
    standard: 'WCAG2A'
});

Defaults to WCAG2AA.

threshold (number)

The number of errors, warnings, or notices to permit before the test is considered to have failed (with exit code 2) when running via the CLI.

{
    "threshold": 9
}

Defaults to 0. Note this configuration is only available when using Pa11y on the command line, not via the JavaScript Interface.

timeout (number)

The time in milliseconds that a test should be allowed to run before calling back with a timeout error.

Please note that this is the timeout for the entire test run (including time to initialise Chrome, load the page, and run the tests).

pa11y(url, {
    timeout: 500
});

Defaults to 30000.

userAgent (string)

The User-Agent header to send with Pa11y requests. This is helpful to identify Pa11y in your logs.

pa11y(url, {
    userAgent: 'A11Y TESTS'
});

Defaults to pa11y/<version>.

viewport (object)

The viewport configuration. This can have any of the properties supported by the puppeteer setViewport method.

pa11y(url, {
    viewport: {
        width: 320,
        height: 480,
        deviceScaleFactor: 2,
        isMobile: true
    }
});

Defaults to:

{
    width: 1280,
    height: 1024
}

wait (number)

The time in milliseconds to wait before running HTML_CodeSniffer on the page.

pa11y(url, {
    wait: 500
});

Defaults to 0.

Actions

Actions are additional interactions that you can make Pa11y perform before the tests are run. They allow you to do things like click on a button, enter a value in a form, wait for a redirect, or wait for the URL fragment to change:

pa11y(url, {
    actions: [
        'click element #tab-1',
        'wait for element #tab-1-content to be visible',
        'set field #fullname to John Doe',
        'clear field #middlename',
        'check field #terms-and-conditions',
        'uncheck field #subscribe-to-marketing',
        'screen capture example.png',
        'wait for fragment to be #page-2',
        'wait for path to not be /login',
        'wait for url to be https://example.com/',
        'wait for #my-image to emit load',
        'navigate to https://another-example.com/'
    ]
});

Below is a reference of all the available actions and what they do on the page. Some of these take time to complete so you may need to increase the timeout option if you have a large set of actions.

click element <selector>

Clicks an element:

pa11y(url, {
    actions: [
        'click element #tab-1'
    ]
});

You can use any valid query selector, including classes and types.

set field <selector> to <value>

Sets the value of a text-based input or select:

pa11y(url, {
    actions: [
        'set field #fullname to John Doe'
    ]
});

clear field <selector>

Clears the value of a text-based input or select:

pa11y(url, {
    actions: [
        'clear field #middlename'
    ]
});

check field <selector>, uncheck field <selector>

Checks/unchecks an input of type radio or checkbox:

pa11y(url, {
    actions: [
        'check field #terms-and-conditions',
        'uncheck field #subscribe-to-marketing'
    ]
});

screen capture <to-file-path.png>

Captures the screen, saving the image to a file, which can be useful between actions for debugging, or just for visual reassurance:

pa11y(url, {
    actions: [
        'screen capture example.png'
    ]
});

wait for

wait for <fragment|path|url>

This allows you to pause the test until a condition is met, and the page has either a given fragment, path, or URL. This will wait until Pa11y times out so it should be used after another action that would trigger the change in state. You can also wait until the page does not have a given fragment, path, or URL using the to not be syntax. This action takes one of the forms:

  • wait for fragment to be <fragment> (including the preceding #)
  • wait for fragment to not be <fragment> (including the preceding #)
  • wait for path to be <path> (including the preceding /)
  • wait for path to not be <path> (including the preceding /)
  • wait for url to be <url>
  • wait for url to not be <url>

E.g.

pa11y(url, {
    actions: [
        'click element #login-link',
        'wait for path to be /login'
    ]
});

wait for element's state

This allows you to pause the test until an element on the page (matching a CSS selector) is either added, removed, visible, or hidden. This will wait until Pa11y times out so it should be used after another action that would trigger the change in state. This action takes one of the forms:

  • wait for element <selector> to be added
  • wait for element <selector> to be removed
  • wait for element <selector> to be visible
  • wait for element <selector> to be hidden

E.g.

pa11y(url, {
    actions: [
        'click element #tab-2',
        'wait for element #tab-1 to be hidden'
    ]
});

wait for element's event

This allows you to pause the test until an element on the page (matching a CSS selector) emits an event. This will wait until Pa11y times out so it should be used after another action that would trigger the event. This action takes the form wait for element <selector> to emit <event-type>. E.g.

pa11y(url, {
    actions: [
        'click element #tab-2',
        'wait for element #tab-panel-to to emit content-loaded'
    ]
});

navigate to <url>

This action allows you to navigate to a new URL if, for example, the URL is inaccessible using other methods. This action takes the form navigate to <url>. E.g.

pa11y(url, {
    actions: [
        'navigate to https://another-example.com'
    ]
});

Runners

Pa11y supports multiple test runners which return different results. The built-in options are:

You can also write and publish your own runners. Pa11y looks for runners in your node_modules folder (with a naming pattern), and the current working directory. The first runner found will be loaded. So with this command:

pa11y https://example.com --runner custom-tool

The following locations will be checked:

<cwd>/node_modules/pa11y-runner-custom-tool
<cwd>/node_modules/custom-tool
<cwd>/custom-tool

A Pa11y runner must export a string property named supports. This is a semver range which indicates which versions of Pa11y the runner supports:

exports.supports = '^8.0.0';

A Pa11y runner must export a property named scripts. This is an array of strings which are paths to scripts which need to load before the tests can be run. This may be empty:

exports.scripts = [
    `${__dirname}/vendor/example.js`
];

A runner must export a run method, which returns a promise that resolves with test results (it's advisable to use an async function). The run method is evaluated in a browser context and so has access to a global window object.

The run method must not use anything that's been imported using require, as it's run in a browser context. Doing so will error.

The run method is called with two arguments:

  • options: Options specified in the test runner
  • pa11y: The Pa11y test runner, which includes some helper methods:
    • pa11y.getElementContext(element): Get a short HTML context snippet for an element
    • pa11y.getElementSelector(element): Get a unique selector with which you can select this element in a page

The run method must resolve with an array of Pa11y issues. These follow the format:

{
    code: '123', // An identifier for this error
    element: {}, // The HTML element this issue relates to; `null` if no element is involved
    message: 'example', // A description of the issue
    type: 'error', // 'error', 'warning', or 'notice'
    runnerExtras: {} // Additional data a runner is free to provide; unused by Pa11y itself
}

Examples

Basic example

Run Pa11y on a URL and output the results. See the example.

Multiple URLs example

Run Pa11y on multiple URLs at once and output the results. See the example.

Actions example

Step through some actions before Pa11y runs. This example logs into a fictional site then waits until the account page has loaded before running Pa11y. See the example.

Puppeteer example

Pass in pre-created Puppeteer browser and page instances so that you can reuse them between tests. See the example.

Common questions and troubleshooting

See our Troubleshooting guide to get the answers to common questions about Pa11y, along with some ideas to help you troubleshoot any problems.

Tutorials and articles

You can find some useful tutorials and articles in the Tutorials section of pa11y.org.

Contributing

There are many ways to contribute to Pa11y, some of which we describe in the contributing guide for this repo.

If you're ready to contribute some code, clone this repo, commit your code to a new branch, then create a pull request to bring your changes into main. If you're an external contributor, fork this repo first, then follow the same process.

Please write unit tests for your code, and check that everything works by running the following before opening a pull request:

npm run lint                # Lint the code
npm test                    # Run every test, reporting coverage

You can also run test suites individually:

npm run test-unit           # Run the unit tests alone
npm run test-integration    # Run the integration tests alone
npm run test-coverage       # Run the unit tests alone, reporting coverage

Support and migration

Tip

We maintain a migration guide to help you migrate between major versions.

When we release a new major version we will continue to support the previous major version for 6 months. This support will be limited to fixes for critical bugs and security issues. If you're opening an issue related to this project, please mention the specific version that the issue affects.

The following table lists the major versions available and, for each previous major version, its end-of-support date, and its final minor version released.

Major version Final minor version Node.js support Puppeteer version Support end date
8 18, 20 ^22 ✅ Current major version
7 7.0 18, 20 ^20 October 2024
6 6.2 12, 14, 16 ~9.1 July 2024
5 5.3 8, 10, 12 ^1 2021-11-25
4 4.13 4, 6, 8 2018-08-15
3 3.8 0.12, 4 2016-12-05
2 2.4 0.10, 0.12 2016-10-16
1 1.7 0.10 2016-06-08

License

Pa11y is licensed under the Lesser General Public License (LGPL-3.0-only).
Copyright © 2013-2024, Team Pa11y and contributors

pa11y-ci's People

Contributors

42tte avatar aarongoldenthal avatar andrewmee avatar andygout avatar danyalaytekin avatar dependabot[bot] avatar dwightjack avatar einselbst avatar glynnphillips avatar greggles avatar hollsk avatar joeyciechanowicz avatar josebolos avatar ker-an avatar kkoskelin avatar lc512k avatar liamkeaton avatar lorenzoancora avatar mfranzke avatar phillbaker avatar rowanmanning avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

pa11y-ci's Issues

Pa11y overrides the specific default HideElements configuration for each individual URL

Hello pa11y team 👋 how are you?

I am a QA engineer trying to use Pa11y in our framework to improve the accessibility levels for our projects. I am really enjoying this tool so far. But today I came across a specific case that is the reason of this 'issue', or as I might say "an improvement".

Let's consider the following .pa11yci config file:

{
"defaults": {
"timeout": 1000,
"hideElements": ".hiddingAGlobalElement", ".alsoHiddingAnotherGlobalOne"
},
"urls": [
"http://pa11y.org/",
{
"url": "http://pa11y.org/contributing",
"hideElements": ".advert, #modal, div[aria-role=presentation]"
},
{
"url": "http://pa11y.org/news/",
"hideElements": ".someOtherElement, #ignoreMe"
]
}
]
}

When I run it, Pa11y seems to be overriding the local hideElements values when I have a global HideElements defined. And in my current example I would like to have global HideElements as they appear for every page I am testing, but also I would like to hide unique elements (that are not conform with the accessibility standards) for every page I am testing.

A current workaround is duplicating every global HideElement for each individual URLs (what I think it's not great).

Let me know if you need more info and please share your thoughts about this suggestion 😄

Thank you guys 👍

Request for feedback - badges, '--init' flag, environment variables [enhancement ideas]

Hi,

I'm loving and using pa11y-ci. Thank you to all contributors, and the pa11y team!

I've got some suggestions and ideas, that I'd like some feedback on.

Then I may be able to implement them, and create a pull request ...

  1. Suggest badges (via https://shields.io) in the documentation for use in READMEs to promote pa11y-ci, for example, Accessibility testing

    [![Accessibility testing](https://img.shields.io/badge/accessibility-pa11y--ci-blue.svg)](https://github.com/pa11y/pa11y-ci)
    
  2. An --init or --defaults flag.
    pa11y-ci --init would interactively create a .pa11yci.json file, rather like npm init
    pa11y-ci --defaults > .pa11yci.json would dump a default configuration to file.
    (Example, https://gist.github.com/nfreear/785dce9698bcd9656b6d3fa5ffee9b47)

  3. Support for environment variables in .pa11yci.json files.
    Why? Useful when running tests on multiple URLs on a visible, but un-advertised test-server,

    Example,

    export TEST_SRV=https://test.example.org  # Or, set via Travis-CI user-interface.
    
    pa11y-ci -C .pa11yci.json

    Then,

    {
      "defaults": { },
      "urls": [
        "${TEST_SRV}/page1.html",
        "${TEST_SRV}/page2.html",
        "${TEST_SRV}/page3.html",
      ]
    }

Yours,

Nick

(FYI, I've recently blogged about my use of pa11y-ci.)


CLI output + save json file?

Is there a way to generate the standard CLI output and save a JSON file without having to run the test twice?

Right now, if I run pa11y-ci --json > pa11y-results.json I get a JSON file, but none of the standard CLI output.

Unable to add rules in config

pa11y-ci 2.1.1

Using the below config.

{
    "defaults": {
        "standard": "WCAG2A",
        "rules": ["Principle1.Guideline1_1.1_1_1.H37"],
        "hideElements": "",
        "ignore": [],
        "includeWarnings": true,
        "timeout": 5000,
        "threshold": 0
    },
    "urls": [
        {
            "url": "https://www.ecster.se",
            "actions": [
            ]
        }]
}

I get:

 Error: Evaluation failed: Error: Principle1.Guideline1_1.1_1_1.H37 is not a valid WCAG 2.0 rule
   at configureHtmlCodeSniffer (<anonymous>:60:13)
   at runPa11y (<anonymous>:30:3)

As far as I understand this is according to the documentation:
https://github.com/pa11y/pa11y#rules-array

Globbing doesn't work in config file

According to #38 globbing got implemented and should work like

pa11y-ci "**/*.html"

This works fine for me. It doesn't work when used in the config file though:

{
    "defaults": {
        "timeout": 10000,
        "threshold": 10
    },
    "urls": [
        "**/*.html"
    ]
}

Throws the error
Error: net::ERR_NAME_NOT_RESOLVED at http://**/*.html

Is globbing just implemented for CLI?

Pa11y-CI cannot be run on https with self-signed certificate

When running Pa11y-CI on test environment with self-signed certificate - then the exception:
"Error: net::ERR_CERT_AUTHORITY_INVALID at https://_ _ _" is thrown. Had tried to use "ignoreHTTPSErrors" but it had no effect.

Is there no way currently to "ignore" the cert errors? Also I think that ignoring cert errors should be default behavior.

Ignore specific rules

Hi!
Is there a way to ignore a specific rule?
For example if would like to ignore WCAG2AA.Principle1.Guideline1_4.1_4_3.G18 where should I specify this?

Fails to pass login page since it fails to detect changes in input field.

Hi,
Im trying to setup pa11y-ci in an web application Im working on which has written in AngularJS(1.5.X).
The issue is in the login. Even though pa11y-ci fills the login credentials and hit Sign-in button, the app fails to detect the values in input field and it fails the validations. Looks like keyup or onChange events are not firing hence angular can't trigger digest cycle. I have attached the captured image after pa11y-ci hit Sign-in buttion.

example1

Any heads-up or workarounds for this issue ?

Variable name in screenCapture path ?

In the .pa11y config file is there anyway to configure the default to create a screenCapture for each URL checked? I'm loading the URLs from a sitemap.xml but would like to have a snapshot of each page that was checked. Anyway to use a wildcard or variable name in the config?

Running Pa11y-ci with sitemap

@paul-ks commented on Thu Aug 02 2018

Hi, I am running pa11y-ci with a sitemap like that: pa11y-ci --sitemap url of sitemap and I am getting the following message: The sitemap "url of sitemap" could not be loaded.

Also, how can I tell pa11y-ci to point to a sitemap on the filesystem instead of an url?

Thanks,
Paul

--config option example?

I'm having trouble figuring out how to use a config file with a simple command line test (or whether one can). I need to go to a URL, click a link, and test the resulting page. Let's say it's the "More information..." link on http://example.com (which goes to https://www.iana.org/domains/reserved).

With this saved in example-test.json

pa11y({
  actions: [
    'click element body > div > p:nth-child(3) > a',
    'wait for url to be https://www.iana.org/domains/reserved'
  ]
});

I would expect that pa11y -c example-test.json http://example.com would output the results for https://www.iana.org/domains/reserved (25 errors), but instead I just get the results for example.com (1 error), as if there was no config file. The examples and sample code are either ambiguous or seem to be aimed at running tests from your own JS so I'm having a hard time seeing what's wrong.

Run into "Protocol error (Target.createTarget): Target closed" with node 8.11.2

We're running a set of three tests in our project.
The first one seems to run just fine, however, all the other tests fail to run:

Running Pa11y on 3 URLs:
 > https://video-qa.springernature.app/video - 0 errors
 > https://video-qa.springernature.app/video/segment/10.1007/978-1-4842-3635-2_2 - Failed to run
 > https://video-qa.springernature.app/video/10.1007/978-1-4842-3635-2 - Failed to run

Errors in https://video-qa.springernature.app/video/segment/10.1007/978-1-4842-3635-2_2:
 • Error: Protocol error (Target.createTarget): Target closed.

Errors in https://video-qa.springernature.app/video/10.1007/978-1-4842-3635-2:
 • Error: Navigation failed because browser has disconnected!

I found out (by chance) that downgrading node to 8.0.0 makes the error go away.
This currently happens with pa11y-ci 1.2.1
Happy to provide more details if required. Thank you!

TypeError while printing out accessibility violations

Since upgrading to the latest 2.0.0 release of pa11y-ci I get the following error whenever pa11y-ci is run using a standard other than WCAG2AA (the default). While pa11y-ci runs through the tests just fine, the issue seems to come from one of the dependencies when printing out errors from the test run as seen below.

Note: This errors does not seem to occur when I run the regular non-ci centric pa11y

Environment:

Pa11y:      5.0.3
Node.js:    8.9.4
npm:        5.6.0
OS:         16.7.0 (darwin)
> pa11y-ci -V
2.0.0

Error:

> pa11y-ci --config tests/pa11y/pa11y.json

Running Pa11y on 1 URLs:
 > http://localhost:9090/services - 2 errors

Errors in http://localhost:9090/services:

 • The heading structure is not logically nested. This h2 element appears to be the primary document heading, so should be an h1 element.

   (#burger-menu-container > div:nth-child(2) > ul > div > h2)

   <h2><a href="javascript:void();">Pr...</h2>
   
/Users/macbookpro/work/project-tr12/node_modules/pa11y-ci/node_modules/async/asyncify.js:108
    throw error;
    ^

TypeError: Cannot read property 'replace' of null
    at report.results.(anonymous function).forEach.result (/Users/macbookpro/work/project-tr12/node_modules/pa11y-ci/lib/pa11y-ci.js:136:40)
    at Array.forEach (native)
    at Object.keys.forEach.url (/Users/macbookpro/work/project-tr12/node_modules/pa11y-ci/lib/pa11y-ci.js:125:27)
    at Array.forEach (native)
    at Object.testRunComplete [as drain] (/Users/macbookpro/work/project-tr12/node_modules/pa11y-ci/lib/pa11y-ci.js:122:33)
    at /Users/macbookpro/work/project-tr12/node_modules/pa11y-ci/node_modules/async/internal/queue.js:113:19
    at /Users/macbookpro/work/project-tr12/node_modules/pa11y-ci/node_modules/async/internal/onlyOnce.js:12:16
    at invokeCallback (/Users/macbookpro/work/project-tr12/node_modules/pa11y-ci/node_modules/async/asyncify.js:101:9)
    at /Users/macbookpro/work/project-tr12/node_modules/pa11y-ci/node_modules/async/asyncify.js:89:17
    at process._tickCallback (internal/process/next_tick.js:109:7)

pa11y-ci ends with an npm error after the displaying the results

I have spent hours trying to overcome this issue where the pa11y-ci ends with an error. It throws out the errors and ends with this error below


   (#mat-input-1)

   <input _ngcontent-fgs-c4="" class="mat-input-element
   mat-form-field-autofill-control cdk-text-field-autofill-monitored
   ng-untouched ng-pristine ng-invalid" formcontrolname="password" matinput=""
   onpaste="return false" placeholder="Password" type="pas...

✘ 2/3 URLs passed
npm ERR! code ELIFECYCLE
npm ERR! errno 2
npm ERR! @[email protected] a11y-report: `pa11y-ci`
npm ERR! Exit status 2
npm ERR!
npm ERR! Failed at the @[email protected] a11y-report script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

npm ERR! A complete log of this run can be found in:
npm ERR!     C:\Users\M1030316\AppData\Roaming\npm-cache\_logs\2019-06-11T08_10_41_881Z-debug.log


Need quick help in fixing this problem; I am blocked because of this.

this is my .pa11yci

{
  "defaults": {
    "ignore": ["notice"],
    "standard": "WCAG2A"
  },
  "urls": [
    "http://localhost:4200/not-found",
    "http://localhost:4200/not-authorized",
    "http://localhost:4200/admin"
  ]
}

I am just running "pa11y-ci" from the terminal.

Sitemap find/replace

Sometimes a sitemap's URLs aren't correct when running in a CI environment. E.g if the site is running on localhost:4000 but each URL in it has the live domain name.

We need a way to find/replace in the sitemap URLs I think. Something like this?

pa11y-ci --sitemap http://localhost:4000/ --sitemap-find mysite.com --sitemap-replace localhost:4000

Only WCAG2AA

Pa11y has options for Section508, WCAG2A & WCAG2AA. I don't see anywhere in the docs or code for Pa11y-ci to use the other options

Running from Docker

I have created Docker image base on mode:10-jessie and installed all pre-requisites for Chrome. This should be used to run in Concourse CI.

Now when I run:

/node_modules/.bin/pa11y-ci --json

I get:

(node:3142) UnhandledPromiseRejectionWarning: Error: Failed to launch chrome!
[1008/134337.709535:ERROR:zygote_host_impl_linux.cc(89)] Running as root without --no-sandbox is not supported. See https://crbug.com/638180.


TROUBLESHOOTING: https://github.com/GoogleChrome/puppeteer/blob/master/docs/troubleshooting.md

    at onClose (/node_modules/puppeteer/lib/Launcher.js:339:14)
    at Interface.helper.addEventListener (/node_modules/puppeteer/lib/Launcher.js:328:50)
    at Interface.emit (events.js:187:15)
    at Interface.close (readline.js:379:8)
    at Socket.onend (readline.js:157:10)
    at Socket.emit (events.js:187:15)
    at endReadableNT (_stream_readable.js:1092:12)
    at process._tickCallback (internal/process/next_tick.js:63:19)
(node:3142) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1)
(node:3142) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.

If I run with unprivileged node user:

su -l node -c "/node_modules/.bin/pa11y-ci --json"

I get this output:

(node:3156) UnhandledPromiseRejectionWarning: Error: Failed to launch chrome!
[1008/134509.521725:FATAL:zygote_host_impl_linux.cc(116)] No usable sandbox! Update your kernel or see https://chro
mium.googlesource.com/chromium/src/+/master/docs/linux_suid_sandbox_development.md for more information on developi
ng with the SUID sandbox. If you want to live dangerously and need an immediate workaround, you can try using --no-
sandbox.
#0 0x55eb1afcecac base::debug::StackTrace::StackTrace()
#1 0x55eb1af48670 logging::LogMessage::~LogMessage()
#2 0x55eb1c44c050 service_manager::ZygoteHostImpl::Init()
#3 0x55eb1ac11d7e content::ContentMainRunnerImpl::Initialize()
#4 0x55eb1ac453e8 service_manager::Main()
#5 0x55eb1ac105c1 content::ContentMain()
#6 0x55eb1f0e9ae8 headless::(anonymous namespace)::RunContentMain()
#7 0x55eb1f0e9b78 headless::HeadlessBrowserMain()
#8 0x55eb1ac429db headless::HeadlessShellMain()
#9 0x55eb18f501ac ChromeMain
#10 0x7f2a1bc69b45 __libc_start_main
#11 0x55eb18f5002a _start

Received signal 6                                                                                         [15/7885]
#0 0x55eb1afcecac base::debug::StackTrace::StackTrace()
#1 0x55eb1afce821 base::debug::(anonymous namespace)::StackDumpSignalHandler()
#2 0x7f2a21d1b890 <unknown>
#3 0x7f2a1bc7d067 gsignal
#4 0x7f2a1bc7e448 abort
#5 0x55eb1afcd645 base::debug::BreakDebugger()
#6 0x55eb1af48ae8 logging::LogMessage::~LogMessage()
#7 0x55eb1c44c050 service_manager::ZygoteHostImpl::Init()
#8 0x55eb1ac11d7e content::ContentMainRunnerImpl::Initialize()
#9 0x55eb1ac453e8 service_manager::Main()
#10 0x55eb1ac105c1 content::ContentMain()
#11 0x55eb1f0e9ae8 headless::(anonymous namespace)::RunContentMain()
#12 0x55eb1f0e9b78 headless::HeadlessBrowserMain()
#13 0x55eb1ac429db headless::HeadlessShellMain()
#14 0x55eb18f501ac ChromeMain
#15 0x7f2a1bc69b45 __libc_start_main
#16 0x55eb18f5002a _start
  r8: 00007f2a2231ca00  r9: 00001b0a2297a000 r10: 0000000000000008 r11: 0000000000000202
 r12: 00007fffc0c061c8 r13: 0000000000000161 r14: 00007fffc0c061d0 r15: 00007fffc0c061d8
  di: 0000000000000c61  si: 0000000000000c61  bp: 00007fffc0c05bf0  bx: 00007fffc0c05c50
  dx: 0000000000000006  ax: 0000000000000000  cx: 00007f2a1bc7d067  sp: 00007fffc0c05ab8
  ip: 00007f2a1bc7d067 efl: 0000000000000202 cgf: 002b000000000033 erf: 0000000000000000
 trp: 0000000000000000 msk: 0000000000000000 cr2: 0000000000000000
[end of stack trace]
Calling _exit(1). Core file will not be generated.


TROUBLESHOOTING: https://github.com/GoogleChrome/puppeteer/blob/master/docs/troubleshooting.md

    at onClose (/node_modules/puppeteer/lib/Launcher.js:339:14)
    at Interface.helper.addEventListener (/node_modules/puppeteer/lib/Launcher.js:328:50)
    at Interface.emit (events.js:187:15)
    at Interface.close (readline.js:379:8)
    at Socket.onend (readline.js:157:10)
    at Socket.emit (events.js:187:15)
    at endReadableNT (_stream_readable.js:1092:12)
    at process._tickCallback (internal/process/next_tick.js:63:19)
(node:3156) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1)
(node:3156) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.

When I use pally-ci with localhost I get NO errors, but external urls I get correct errors

When I use pally-ci with localhost I get NO errors, but external urls I get correct errors and warnings.

Does anyone have this issue also.

my .pa11yci.js

module.exports = {
    urls: [
        'http://localhost:8080/#?mpb=topografie&mpz=11&mpv=52.3731081:4.8932945&pgn=home',
        'http://localhost:8080/#?dsd=bag&dsp=1&dsv=TABLE&mpb=topografie&mpz=11&mpv=52.3731081:4.8932945'
    ]
}

external:

module.exports = {
    urls: [
        'http://data.amsterdam.nl/#?mpb=topografie&mpz=11&mpv=52.3731081:4.8932945&pgn=home',
        'http://data.amsterdam.nl/#?dsd=bag&dsp=1&dsv=TABLE&mpb=topografie&mpz=11&mpv=52.3731081:4.8932945'
    ]
}

Error: failed to launch chrome! with Travis CI

Description

I'm trying to use pa11y-ci to run tests on some local HTML. I created an npm script (pa11y-ci ./src/**/*.html) that runs great locally, but when I try to run pa11y-ci ./src/**/*.html as part of my Travis CI build, I get the following error (which doesn't error my build either):

(node:2604) UnhandledPromiseRejectionWarning: Error: Failed to launch chrome!
[0909/041700.423583:FATAL:zygote_host_impl_linux.cc(116)] No usable sandbox! Update your kernel or see https://chromium.googlesource.com/chromium/src/+/master/docs/linux_suid_sandbox_development.md for more information on developing with the SUID sandbox. If you want to live dangerously and need an immediate workaround, you can try using --no-sandbox.

Link to build in question: https://travis-ci.org/erickzhao/static-html-webpack-boilerplate/jobs/426233215#L477

Specifications

  • I have pa11y-ci installed as a local package instead of globally
  • I don't have a .pa11yci file
  • pa11y-ci version: ^2.1.1
  • Node versions: v8.11.4 and v10.10.0

Error running pa11y-ci against a url with basic authentication.

Hi, I am working to run pa11y-ci using a custom config file with credential. I referred to "How can Pa11y log in if my site's behind basic auth?" from pa11y github but an error "pa11y is not defined" returns.

config.js script:
const credentials = 'mycredential:mypassword';
const encodedCredentials = new Buffer(credentials).toString('base64');

pa11y('https://my.example.com', {
headers: {
Authorization: Basic ${encodedCredentials}
}
});

pa11y-ci -c config.js output:
There was a problem loading "/opt/pa11y-ci/pa11y-ci-master/config":
ReferenceError: pa11y is not defined
at Object. (/opt/pa11y-ci/pa11y-ci-master/config.js:4:1)
at Module._compile (module.js:652:30)
at Object.Module._extensions..js (module.js:663:10)
at Module.load (module.js:565:32)
at tryModuleLoad (module.js:505:12)
at Function.Module._load (module.js:497:3)
at Module.require (module.js:596:17)
at require (internal/module.js:11:18)
at loadLocalConfigWithJs (/usr/lib/node_modules/pa11y-ci/bin/pa11y-ci.js:166:10)
at Promise (/usr/lib/node_modules/pa11y-ci/bin/pa11y-ci.js:120:14)

Please let me know if you need more information.
Thank you in advance !

Default configuration section in Readme has wrong key name

A recent PR (#89) changed the json key of the default configuration option from defaults to default.
As far as I can tell this is incorrect? Config options are not picked up if specified under the default key. Using the previous value of defaults works correctly however.

For example, according to the current documentation this should set the timeout to 1ms (and therefore immediately timeout as an easily reproducible test case). But the config is not picked up, and the request works fine

{
  "default": {
    "timeout": 1
  },
  "urls": [
    "http://pa11y.org/",
    "http://pa11y.org/contributing"
  ]
}

Using the previous key of defaults works fine however, and the short timeout is correctly picked up here (and so the request immediately timeout).

{
  "defaults": {
    "timeout": 1
  },
  "urls": [
    "http://pa11y.org/",
    "http://pa11y.org/contributing"
  ]
}

See https://github.com/pa11y/pa11y-ci/blob/master/bin/pa11y-ci.js#L192 which is referencing config.defaults.
The integration tests also still reference defaults. See https://github.com/pa11y/pa11y-ci/blob/master/test/integration/mock/config/defaults.json

Tested using pally-cli 2.3.0

Could the documentation change please be reverted? Or the code updated to look for the default key.

Thanks for a very useful tool!

Running against sitemap index doesn't validate any URLS

Many sites have large sitemaps that are broken up into individual files and coordinated by a sitemap index file. A common example of this is the functionality of the Yoast SEO plugin for WordPress.

More information here about how this works:
https://support.google.com/webmasters/answer/75712?hl=en

When Pa11y CI runs against an index file, it does not find any pages to run against and exits. This means that in order to scan an entire site, you need to run the tool against each individual sitemap listed in the index file.

The desired behavior would be to work recursively and conduct a full site scan when given an index file.

Tests that rely on a Cookie header fail after first tests run

We have a test suite that sets a Cookie header with a different value for each test. With the default concurrency of 2, what happens is:

  1. First two tests run, with the correct cookie, all is well
  2. Subsequent tests run, they have a different set of cookies, not the ones that are set in the header.

What I think is happening is that some JS from the first two pages is setting cookies that's overriding what the header tries to use.

We've worked around this by bumping up the concurrency so all the tests are run at once - but wondering if there's a better way to make the tests more idempotent (e.g. clearing cookies after each test?)

/cc @remybach

"level" configuration appears to be ignored

According to the pa11y documentation you should be able to pass level in your configuration file to support a few different use-cases:

  • error: exit with a code of 2 on errors only, exit with a code of 0 on warnings and notices
  • warning: exit with a code of 2 on errors and warnings, exit with a code of 0 on notices
  • notice: exit with a code of 2 on errors, warnings, and notices
  • none: always exit with a code of 0

This does not appear to be respected by pa11y-ci: https://github.com/pa11y/pa11y-ci/blob/master/bin/pa11y-ci.js#L94-L98

In our use-case, we'd like to configure pa11y-ci to with level set to "none" so that we can view errors in accessibility, fix them, and once we hit 0, then change level to "error"

Recommended way to pass in a standard

What's the recommended way to pass in a standard to pa11y-ci? For example, with regular pa11y, I can run pa11y --standard 'WCAG2AA' 'someurl.com'. Can I do something similar with pa11y-ci? Maybe in the .pa11y-ci config file? Seems like it's defaulting to 508.

Allow pa11y-ci to show failed actions & debug logs

Expected Behavior

When running pa11y-ci with a sitemap or multiple urls, I would like to be able to determine which actions failed if a test fails or use browser logs from the tests run if the failure is unrelated to any actions. This would provide for a much easier debugging experience when dealing with 5+ urls.

Similar to how pa11y shows logs when enabled inside the config file. A simple flag or option can easily be used to enable logging for tests in pa11y-ci.

Below is an example of logging from pa11y which could be introduced in pa11y-ci:

Welcome to Pa11y

 > Running Pa11y on URL http://localhost:9090/
 > Debug: Launching Headless Chrome
 > Debug: Opening URL in Headless Chrome
 > Debug: Browser Console: You are running Vue in development mode.
Make sure to turn on production mode when deploying for production.
See more tips at https://vuejs.org/guide/deployment.html
 > Debug: Browser Console: TEMP: currentuser not set
 > Running actions
 > Debug: Running action: wait for url to be http://localhost:9090/
 > Debug:   ✔︎ action complete
 > Debug: Running action: wait for element #loader to be hidden

Note: This could be tied to Issue #15 for easier CI support for logging.

Current Behavior

Currently logs are deleted regardless of any options passed in the config for pa11y-ci. The lines below in pa11y-ci outline where the logging option in the config file is deleted inside pa11y-ci.js:

pa11y-ci/lib/pa11y-ci.js

Lines 47 to 51 in 8dd46ed

// We delete options.log because we don't want it to
// get passed into Pa11y – we don't want super verbose
// logs from it
const log = options.log;
delete options.log;

When a test does fail because of an action or something else on the page, a generic error is put in place, this makes it very difficult to determine which action failed if there are multiple actions for a particular test or if the issue was unrelated to the actions and had something to do with the test page itself.

Running Pa11y on 1 URLs:
 > http://localhost:9090/ - Failed to run

Errors in http://localhost:9090/:

  Error: waiting for function failed: timeout 30000ms exceeded

Impact

Lately while reviewing accessibility violationss found by pa11y-ci it has become increasing difficult to debug issues if a particular test has multiple actions or if the error is related to something on the page instead of an action. I've found myself using pa11y on numerous occasions to get better debug output, but this is both tedious & time consuming when testing multiple urls.

Display errors even when the number of errors is within the specified threshold

The new option to allow threshold per URL is 💯, thanks 🙇.

I just wondered whether it would be of use to still show what pa11y errors there were, as well as the positive message to say you were within threshold.

Otherwise, you need to change / remove those thresholds and run pa11y again to see what needs fixing. Plus it serves as a reminder that although you're within threshold, you do still have errors that should be addressed.

Documentation error for "Viewport"

{
    "defaults": {
        "timeout": 1000,
        "page": {
            "viewport": {
                "width": 320,
                "height": 480
            }
        }
    },
    "urls": [
        "http://pa11y.org/",
        "http://pa11y.org/contributing"
    ]
}

Will make the pa11y-ci to fail on not recognizing "page" object.
I made it to work putting "viewport" dirrectly under the "defaults":

{
    "defaults": {
        "timeout": 1000,
        "viewport": {
            "width": 320,
            "height": 480
        }
    },
    "urls": [
        "http://pa11y.org/",
        "http://pa11y.org/contributing"
    ]
}

Error: page.on is not a function

Im new to pa11y-ci and getting following error when i run pa11y-ci --config .pa11yci.json command.
Node -v v8.15.0
Any idea on this ?

Running Pa11y on 2 URLs:
 > http://pa11y.org/ - Failed to run
 > http://pa11y.org/contributing - Failed to run

Errors in http://pa11y.org/:

 • Error: page.on is not a function

Errors in http://pa11y.org/contributing:

 • Error: page.on is not a function

✘ 0/2 URLs passed

.pa11yci.json file is same as the example given in github repo.

{ "defaults": { "timeout": 1000, "page": { "viewport": { "width": 320, "height": 480 } } }, "urls": [ "http://pa11y.org/", "http://pa11y.org/contributing" ] }

pa11y-ci error output not as descriptive as pa11y error output

As first noted as a comment in issue 60:

pally-ci does not output the specific guides that fail in the same way pa11y does, instead just a suggestion of how to fix. This means if you want to ignore one rather than fix it then it takes additional research to find out what it is.

Specifically, this was painful when having to search through pa11y issues to discover that WCAG2AA.Principle1.Guideline1_4.1_4_3.G18 is actually added as an ignored rules of WCAG2AA.Principle1.Guideline1_4.1_4_3.G18.Fail - whereas in pa11y main it lists the exact code that fails.

Would it be possible to output the ones that fail, as they are not always exactly the same (as proven) in the list of CodeSniffer Rules?

An example ignore list:

"ignore": [
          "WCAG2AA.Principle2.Guideline2_4.2_4_2.H25.1.NoTitleEl",
          "WCAG2AA.Principle3.Guideline3_1.3_1_1.H57.2",
          "WCAG2AA.Principle1.Guideline1_4.1_4_3.G145.Fail",
          "WCAG2AA.Principle1.Guideline1_4.1_4_3.G18.Fail"
        ],

Allow --config .myconfig.js

At the moment, passing a JS config fails. It'd be nice if you could pass something other than JSON!


Note: there's a known workaround.

This will load .pa11yci.js if it exists:

$ pa11y-ci

Is there a way to generate html report using pa11y-ci

is there any way to generate html page output using multiple urls?

I have multiple url in pa11yci.sjon file and I want to save reports to html file so that I can easily embed to Jenkins for report. Is there any way to do?

Timeout is ignored (on Jenkins)

I am trying to run the accessibility tests on Jenkins (with CentOS) and I am having a weird issue with the config files. When I use a .json configuration file, works fine. But when I use a .js file to dynamically generate the urls it ignores the timeout set for the url. I just get

Error: waiting for function failed: timeout 30000ms exceeded

no matter the timeout that I specify. I tried also to put the timeout under default, but is the same result. Locally everything runs fine.

Here is the part where I set the urls and actions. After, there is a loop that replaces ${TEST_URL} for the real one. Sadly, I cannot give the real urls.

let urls = [
    {
        url: '${TEST_URL}',
        timeout: 5000000, //Big timeout just to test
        actions: [
            "navigate to ${TEST_URL}/stuff/stuff...", // Intermediate url to add sth to the cart
            "navigate to ${TEST_URL}", //Go back to the main url
            "click element #goToAnotherPageBtn",
            "wait for .some__box to be visible"
        ]
    }
];

Use a different runner such as Axe

Can I change the runner for pa11y-ci to AXE I see the default is HTML CodeSniffer?

I may be missing something so I apologize, if I am. I see that with pa11y I can specify a running

pa11y --runner=axe http://localhost:4200/landing

I don't see how to change the runner with Pa11y-ci.

Thank you very much for your help (sry if I shouldn't be using issues to ask this questions)

Save to file even if the job fails

Use case: in a CI Job it would be nice to have an artifact with reported errors/warnings/etc. and also let the job fail.

At the moment, using the redirection (eg. > accessibility-report.html), pa11y-ci fails and it doesn't write anything to file.

Using pa11y-ci v2.3.0 and pa11y-reporter-html v1.0.0 in a GitLab pipeline.

Handling a sitemap that contains pdfs

I would like to use pa11y-ci in a jekyll site. The easiest way seems to be using it with a sitemap, however the site has some pdf files which are included in the sitemap, and pa11y-ci gets an error when it tries to check these:

Error: Error opening url
   "http://localhost:4000/files/file.pdf" :
   undefined

I could possibly remove the pdf files from the sitemap, but AFAIK it's better to include them for search engines to index. Maybe pa11y-ci needs an option to exclude certain files from the sitemap e.g. with a regex? Or is there another way I can handle these?

Pa11y-CI and --sitemap only shows errors and no warnings

I have been trying to get Pa11y-CI to show warnings to me as well while using the --sitemap feature. It will only show errors for some reason.

pa11y-ci --sitemap http://domainname/sitemap --include-warnings fails with error: unknown option --include-warnings'`

pa11y-ci http://domainname --include-warnings works as expected

How can I get warnings to also show when using the --sitemap option?

Show errors even when under threshold

I noticed that when errors shown are under the threshold specified, the errors no longer show. Is it possible to make an enhancement to this to add the option of showing these errors anyways? I think it will be good in terms of trying to improve and get rid of these errors before pushing the code to build in our CI pipelines.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.