Accessibility Analysis
The Accessibility Analysis evaluates the website’s compliance with accessibility standards, ensuring it is usable by people with disabilities and adheres to guidelines like WCAG (Web Content Accessibility Guidelines).
Included checks
Section titled “Included checks”- The existence of
alt
attributes for the images - The existence of
aria-*
attributes for important elements on the page - The existence of the
role
attribute for important elements such asnav
,header
,footer
, etc. - The existence of labels for form elements
- The existence of
lang
attribute in<html>
Sample Results
Section titled “Sample Results”The analyzer generates a concise table showing accessibility issues detected across the website:
Accessibility-------------
Analysis name | OK | Notice | Warning | Critical--------------------------------------------------------------------Missing image alt attributes | 1419 | 0 | 2 | 0Missing html lang attribute | 0 | 0 | 0 | 1
In this example, the analysis found:
- 1,419 correctly implemented image alt attributes and 2 warnings for missing alt attributes
- A critical issue where the HTML lang attribute is missing from a page
💡Further development ideas
Section titled “💡Further development ideas”Carrying out other accessibility analyses, e.g. color contrast analyses, seems very complicated for a tool of this type (it goes through and analyzes all pages).
However, if someone is interested in the accessibility area in more detail and has ideas for specific improvements, please open a feature request on GitHub.