What problem does it solve? Guessing an element's state from rendered text leads to wrong-target clicks and false success conclusions. This Skill reads the real DOM and accessibility state of page elements — attribute values, checked/disabled status, ARIA roles — without modifying the page. ## Core Features & Use Cases - Indexed Element Inspection: Use browser_element with info, attribute, or evaluate operations to read any property of an indexed element, such as this.checked or this.value. - CSS-Based DOM Queries: Use browser_find_elements to locate elements by selector and return their attributes, even for hidden or non-interactive nodes. - Page-Wide Computation: Run browser_evaluate or browser_evaluate_js to compute values across the DOM, and enrich observations with includeAccessibility for ARIA roles and backend-node detail. - Use Case: Before submitting a form, verify that a checkbox is actually checked, read the href of a download link, and confirm a button's ARIA role — all without clicking anything. ## Quick Start Inspect the element at index 5 and tell me its href attribute and whether it is currently disabled.