test_accessibility
Evaluate webpage accessibility compliance with WCAG standards using Axe-core. Analyze specific accessibility tags to identify and address issues effectively.
Instructions
Test a webpage for accessibility issues using Axe-core
Input Schema
Name | Required | Description | Default |
---|---|---|---|
tags | No | Optional array of accessibility tags to test (e.g., "wcag2a", "wcag2aa", "wcag21a") | |
url | Yes | URL of the webpage to test |
Input Schema (JSON Schema)
{
"properties": {
"tags": {
"default": [
"wcag2aa"
],
"description": "Optional array of accessibility tags to test (e.g., \"wcag2a\", \"wcag2aa\", \"wcag21a\")",
"items": {
"type": "string"
},
"type": "array"
},
"url": {
"description": "URL of the webpage to test",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}