browser_navigate
Direct the browser to a specified URL to initiate automated web accessibility scans, enabling WCAG compliance checks with visual and JSON reports for remediation.
Instructions
Navigate to a URL
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | Yes | The URL to navigate to |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"url": {
"description": "The URL to navigate to",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}