Find Text
Uses OCR (Optical Character Recognition) to locate specific text on the screen and returns its position information.
Common Properties
- Name - The custom name of the node.
- Color - The custom color of the node.
- Delay Before (sec) - Waits in seconds before executing the node.
- Delay After (sec) - Waits in seconds after executing node.
- Continue On Error - Automation will continue regardless of any error. The default value is false.
Inputs
- Search Text - The text to search for on the screen.
Options
- Confidence - Minimum confidence level for text recognition (default: 0.95).
Outputs
- Result - Position information of the found text including coordinates and dimensions.
How It Works
The Find Text node uses OCR to locate specific text on the screen. When executed, the node:
- Takes a screenshot of the current screen or uses a reference image if provided
- Processes the image using OCR (pytesseract) to extract text
- Searches for the specified text within the recognized text
- Returns position information for all instances of the found text
Requirements
- Valid text to search for
- Confidence value between 0 and 1
- Tesseract OCR engine installed and configured
- Reference image (optional, for targeted search areas)