simulate_colorblind
Visualize webpage appearance for colorblind users by simulating types like protanopia, deuteranopia, or tritanopia. Enhances accessibility testing with actionable insights.
Instructions
Simulate how a webpage looks for colorblind users
Input Schema
Name | Required | Description | Default |
---|---|---|---|
outputPath | No | Optional path to save the screenshot | |
type | Yes | Type of color blindness to simulate | |
url | Yes | URL to capture | |
userAgent | No | Optional user agent string to use for the request |
Input Schema (JSON Schema)
{
"properties": {
"outputPath": {
"description": "Optional path to save the screenshot",
"type": "string"
},
"type": {
"description": "Type of color blindness to simulate",
"enum": [
"protanopia",
"deuteranopia",
"tritanopia"
],
"type": "string"
},
"url": {
"description": "URL to capture",
"type": "string"
},
"userAgent": {
"description": "Optional user agent string to use for the request",
"type": "string"
}
},
"required": [
"url",
"type"
],
"type": "object"
}