Skip to content

AccessibilityCollector

Maciej Laskowski edited this page Oct 3, 2016 · 4 revisions

Accessibility Collector BETA

! Beta Version
This AET Plugin is currently in a BETA version.

Accessibility Collector is responsible for collecting validation results containing violations of the defined coding standard found on the page. It 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: 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