Skip to content

AccessibilityCollector

Kamil Plucinski edited this page Jan 3, 2019 · 4 revisions

Accessibility Collector

Accessibility Collector is responsible for collecting validation results containing violations of the defined coding standard found on the page. The plugin is based on AccessSniff v. 3.2.0, which uses the HTML_CodeSniffer tool to find violations.

Module name: accessibility

Parameters
Parameter Value Description Mandatory
standard WCAG2A
WCAG2AA (default)
WCAG2AAA
The parameter specifies the standard which the page is validated against. More information on the standards is available at: WCAG2 no
Example Usage
<?xml version="1.0" encoding="UTF-8" ?>
<suite name="test-suite" company="cognifide" project="project">
    <test name="source-test">
        <collect>
            ...
            <accessibility standard="WCAG2AAA" />
            ...
        </collect>
        <compare>
            ...
        </compare>
        <urls>
            ...
        </urls>
    </test>
    ...
    <reports>
        ...
    </reports>
</suite>
Clone this wiki locally