find-elements-by-text
Locate all mobile app elements containing specific text using the MCP Appium Server, enabling precise interaction and automation in mobile testing workflows.
Instructions
Find all elements containing specific text
Input Schema
Name | Required | Description | Default |
---|---|---|---|
text | Yes | Text to search for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"text": {
"description": "Text to search for",
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
}