I’m currently trying to use UiPath with a Flash-based web application.
On a screen of the app, we have an input field and we can see “how many letters are inputted” and “maximum number of letters for the input form”, and I want to get the number of inputted letters by using UiPath (see the image below, 6 is inputted letters and 400 is the max)
But I don’t know how to do it.
By using UI Explorer, I found the text “6/400” is recognized as two separate UI elements; “6” and “/400”.
selector for “/400”
selector for “6”
Does anyone have idea to handle this??
What I tried is…
-Use Citrix automation : find the image of “/400” and get OCR text from specified field next to the image
→ This somehow works but UiPath sometimes wrongly recognizes the text, for example, it says “6” when the text is actually “0” .
-Use Anchor Base : put Find Element as an Anchor and find “/400” by using it, then try to find an element by using following selector (I used “*” because the text besides “/400” changes)
→ This didn’t work and UiPath returns different UI element.
…and many other small modifications but nothing worked so far.