Identify numbers in Chrome Extension

Hi, i have a Chrome extension that shows dinamic numbers.
I want to automate with an if coindition following this actions:

  • If number shows 0.00XXX then click on botton above named “Next”.
  • Else wait until numers show format 0.00XXX

I cannot get any activity that interacts with numbers on a webpage or chrome extension and indetifying a format could realize actions.

Could you help me or give any guide, video or PDF about that?

@rokrslayer

Welcome to our UiPath community.

Use Get Text activity and indicate that number field to read the text from application. And it will give output as String.

Hi

Welcome to UiPath forum

Hope the below steps would help you resolve this

  1. Create a Boolean variable named bool_exists with default value as False in variable panel

  2. Now Use a WHILE LOOP
    and mention the condition like this
    NOT bool_exists

  3. Inside the loop use a GET TEXT activity and indicate that element and get the output as a string variable named Strinput
    Set the property like
    WaitForReady as Complete
    Note : And May be if the browser takes even more time in order to avoid this get text activity cover this specific get text activity alone with TRY CATCH block so that even if it fails it will not stop the loop

  4. Inside the same loop use a IF activity with condition like this

Strinput.ToString.Contains(“0.00”)
If true it goes to THEN Block where use a assign activity like this

bool_exists = False

If false it goes to else block where it blank

  1. So now as Boolean is false the loop will stop if not till then the loop will continue

May be to slow down we can include a delay activity inside the loop

Cheers @rokrslayer

Sorry to bother you.

I have this screenshot in a Chrome extension where numbers appear randomly .

When numbers are like 0.001, 0.006, 0.008, 0.001092 (format like 0.00XXXX) then go to actions that i programmed.
However when numbers are 0.02, 0.06, 0.4, 4.2 then it countinues waiting and checking until next number have de first condition (0.00XXXX).

NumbersRandom

I’m a newbie with Uipath and those indications cannot interpret very well dealing with my spanish version of Uipath.
Could you give me a image of how could be structured the flowchart in uipath workspace?