resolve_uid_to_selector
Convert UID identifiers from browser snapshots into CSS selectors for debugging web elements and automating browser interactions.
Instructions
Resolve a UID to a CSS selector (debugging aid). Fails on stale UIDs—take a fresh snapshot first.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
uid | Yes | The UID from a snapshot to resolve |
Input Schema (JSON Schema)
{
"properties": {
"uid": {
"description": "The UID from a snapshot to resolve",
"type": "string"
}
},
"required": [
"uid"
],
"type": "object"
}