browser_element_status
Diagnoses why a browser element cannot be clicked or input, checking visibility, interactability, event bindings, and loading state, then provides specific reasons and fixes.
Instructions
诊断元素状态(可见性、可交互性、加载状态、遮挡情况、事件绑定)。快速判断元素为何无法点击/输入,返回具体原因(如被遮挡、不可见、disabled、未加载、动画中、z-index问题等)和修复建议。
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| selector | Yes | 要诊断的元素选择器(必填) | |
| checkEvents | No | 是否检查元素事件绑定(click/keydown/change等),默认true | |
| checkVisibility | No | 是否详细检查可见性(opacity、display、visibility、clip-path),默认true | |
| checkInteractability | No | 是否检查可交互性(disabled、readonly、pointer-events),默认true |