Automated Testing
Automated testing is the use of software tools to run predefined checks against a website or application, rather than having a person perform each check by hand. In accessibility work, these tools can quickly scan pages for certain kinds of issues and report potential problems. However, automated tools detect only a portion of accessibility issues, so manual review and assistive technology testing are generally still needed.
Automated testing is a testing approach in which software tools and scripts execute predefined test cases repeatedly and at scale, comparing actual outcomes against expected results without a human running each test manually. Applied to digital accessibility, automated tools programmatically evaluate markup, computed properties, and rendered output against machine-detectable conditions derived from standards such as WCAG success criteria. These tools can reliably surface certain classes of defects (for example, missing alternative text attributes, some color-contrast failures, and specific ARIA misuse), but many WCAG requirements depend on human judgment (such as the meaningfulness of alternative text, logical reading order, or the accuracy of labels) and are not fully verifiable by automation. Consequently, automated testing detects only a subset of potential issues and should be combined with manual inspection and assistive technology testing; passing automated checks does not by itself establish WCAG conformance, an accessible user experience, or legal compliance. This entry is general guidance and not legal advice.
Why it matters
Automated testing is valuable because it lets teams scan large volumes of pages quickly and repeatedly, catching certain classes of defects far faster than manual review alone. For organizations maintaining sites that change frequently, integrating automated checks into a build process or continuous integration pipeline can surface machine-detectable problems (such as missing alternative text attributes or some color-contrast failures) early, before they reach users. This scalability makes automated testing a practical first line of defense in an accessibility program.
The critical caveat is that automated tools detect only a portion of accessibility issues. Many WCAG requirements depend on human judgment, whether alternative text is actually meaningful, whether reading order is logical, or whether labels accurately describe their controls, and these cannot be fully verified by software. Relying on automated results alone can create a false sense of security, because passing automated checks does not by itself establish WCAG conformance, an accessible experience for all users, or immunity from legal claims.
For this reason, automated testing should be treated as one component of a broader evaluation strategy rather than a complete solution. Combining it with manual inspection and testing with assistive technologies gives a far more accurate picture of real-world accessibility. This entry is general guidance and not legal advice; organizations with specific compliance questions should consult qualified legal counsel and monitor current agency rulemaking.
Who it's relevant to
Inside Automated Testing
Common questions
Answers to the questions practitioners most commonly ask about Automated Testing.