inspect_element
Answer 'why isn't this element showing where I expect?' for a CSS selector on a live page. Returns the resolved box model, computed display/visibility/opacity/position/z-index, colours, whether the element is inside the viewport, and — crucially — whether another element is covering it. These are the values a browser computes after the full cascade and layout; they cannot be derived from reading HTML and CSS.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | The absolute URL to load, including https:// | |
| width | No | Viewport width in pixels. 320-2560. Defaults to 1280. | |
| height | No | Viewport height in pixels. 240-2000. Defaults to 800. | |
| selector | Yes | CSS selector for the element to inspect, for example '.buy-button' or '#header nav a' | |
| max_matches | No | How many matching elements to report. 1-10. Defaults to 3. |