audit_webpage
Analyze webpage accessibility by checking compliance with WCAG standards using axe-core. Identify issues, include HTML snippets, and specify tags like wcag2a or best-practice for targeted audits.
Instructions
Perform an accessibility audit on a webpage
Input Schema
Name | Required | Description | Default |
---|---|---|---|
includeHtml | No | Whether to include HTML snippets in the results | |
tags | No | Specific accessibility tags to check (e.g., wcag2a, wcag2aa, wcag21a, best-practice) | |
url | Yes | URL of the webpage to audit |
Input Schema (JSON Schema)
{
"properties": {
"includeHtml": {
"default": false,
"description": "Whether to include HTML snippets in the results",
"type": "boolean"
},
"tags": {
"description": "Specific accessibility tags to check (e.g., wcag2a, wcag2aa, wcag21a, best-practice)",
"items": {
"type": "string"
},
"type": "array"
},
"url": {
"description": "URL of the webpage to audit",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}