get_rules
Retrieve accessibility rules for web testing, with options to filter by tags like WCAG standards or best practices, ensuring compliance with Axe-core API and Puppeteer.
Instructions
Get information about available accessibility rules with optional filtering
Input Schema
Name | Required | Description | Default |
---|---|---|---|
tags | No | Filter rules by these tags (e.g., "wcag2a", "wcag2aa", "best-practice") |
Input Schema (JSON Schema)
{
"properties": {
"tags": {
"description": "Filter rules by these tags (e.g., \"wcag2a\", \"wcag2aa\", \"best-practice\")",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
}