inspect_at_point
Inspect React components at specific screen coordinates to identify UI elements and their properties during React Native development.
Instructions
Inspect the React component at specific (x, y) coordinates. Works like React Native's Element Inspector. NOTE: This API (getInspectorDataForViewAtPoint) may not be available in newer React Native versions with Fabric. If unavailable, use ios_describe_point/android_describe_point for native element info, then find_components to locate the React component.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| x | Yes | X coordinate (in points for iOS, pixels for Android) | |
| y | Yes | Y coordinate (in points for iOS, pixels for Android) | |
| includeProps | No | Include component props in the output (default: true) | |
| includeFrame | No | Include position/dimensions (frame) in the output (default: true) |