Solutions for element selection, text recognition, and detection problems
click().text("Hallo")
HaII0
❌click().text("Hallo")
. Because of recognition issues. (l
->I
and o
-> 0
)Re-Teach Sentence-Level OCR Model
HaII0
) and replace it with the correct label: Hallo
.
click().text("Name")
or click().text("Name")
🧑 Name
❌ 🤖 Role
✅click().text("Name")
.Re-Teach Sentence-Level OCR Model
HaII0
) and replace it with the correct label: Hallo
.
Use Custom Model Word-Level Detection
Alice Johnson
✅ Software Engineer
✅text("Alice Johnson")
or text("Software Engineer")
Alice Johnson Software Engineer
❌Use Default Word-Level Detection (Best Practice)
Use Custom Model Word-Level Detection
Use relative anchore Element
Alice Johnson
✅text("Alice Johnson")
Alice
❌ Johnson
❌text("Alice Johnson")
on its own.Use Default Word-Level Detection (Best Practice)
Use Custom Model Word-Level Detection
Alice Johnson
✅text("Alice Johnson")
<no words recognized>
❌text("Alice Johnson")
on its own.Use Default Word-Level Detection (Best Practice)
Use Custom Model Word-Level Detection
1
✅ 2
✅ 3
✅text("2")
1
✅ 2
❌ 3
✅text("2")
on its own.Use AI Element
AskUI-ImportExperimentalCommands
in your terminal.Alice Johnson
✅text("Alice Johnson")
Alice Johnson
❌text("Alice Johnson")
on its own.Use AI Element
AskUI-ImportExperimentalCommands
in your terminal.