Select text
select_textSelect a specific character range within a text element to copy or replace only that portion, leaving the rest unchanged.
Instructions
Select a character range inside a text element through the accessibility API, for example to copy part of a value or to replace just that part with type_text. Defaults to selecting from start to the end of the value. Use set_value to replace the whole value instead. Only the selection changes; the text is not modified.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| start | No | Zero-based character offset to start the selection at (default 0) | |
| length | No | Number of characters to select (default: through the end of the value) | |
| element_id | Yes | Text element to select in, from get_app_state |