How to 'Get Text' dynamically in MOBILE

I have a String : “The new Order number is 02055984”
The Number is dynamically change every new order
I want to get the all String But I can’t do that with the activate of the mobile
I gets the next error - even if I put * before the number
image

Why ?

When you’re dealing with a text that changes you can’t use that text in the selector and expect it will match the next time.

When you’re dealing with web pages on mobile, you can leverage the UiAutomation tools because ultimately the engine used underneath for web sites is the same. So you can open the site in a normal browser and use UI Explorer to inspect all properties and find a simple, stable selector (for UI Explorer to appear in toolbar you have to install UiPath.UiAutomation.Activities ~ temporarily if you don’t need it otherwise ~).

image

MDM tries to get a good selector but it’s not a replacement for what a human can do. If you craft the selector in UI Explorer you can use tag, class, parentid etc to uniquely identify the element containing that text, without actually relying on the text.

Hope this helps!