dom_inspector
Analyze and inspect DOM elements, their properties, and computed styles on any webpage by specifying a URL and CSS selector. Includes options to inspect child elements and set wait times.
Instructions
Inspect DOM elements and their properties
Input Schema
Name | Required | Description | Default |
---|---|---|---|
includeChildren | No | Whether to include children elements. Default: false | |
includeStyles | No | Whether to include computed styles. Default: true | |
selector | Yes | CSS selector to inspect | |
url | Yes | URL to inspect | |
waitTime | No | Time to wait in milliseconds before inspecting. Default: 1000 |
Input Schema (JSON Schema)
{
"properties": {
"includeChildren": {
"description": "Whether to include children elements. Default: false",
"type": "boolean"
},
"includeStyles": {
"description": "Whether to include computed styles. Default: true",
"type": "boolean"
},
"selector": {
"description": "CSS selector to inspect",
"type": "string"
},
"url": {
"description": "URL to inspect",
"type": "string"
},
"waitTime": {
"description": "Time to wait in milliseconds before inspecting. Default: 1000",
"type": "number"
}
},
"required": [
"url",
"selector"
],
"type": "object"
}