check_accessibility
Analyze web accessibility of a URL using axe-core, identifying WCAG compliance issues and providing actionable insights for improvements.
Instructions
Check web accessibility of a given URL using axe-core
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | Yes | URL to analyze | |
userAgent | No | Optional user agent string to use for the request | |
waitForSelector | No | Optional CSS selector to wait for before analysis |
Input Schema (JSON Schema)
{
"properties": {
"url": {
"description": "URL to analyze",
"type": "string"
},
"userAgent": {
"description": "Optional user agent string to use for the request",
"type": "string"
},
"waitForSelector": {
"description": "Optional CSS selector to wait for before analysis",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}