I am filling a form but sometimes a loading bar appears at random places (Not Fixed)
I want to wait for this element to disappear and then continue filling the form
But I am getting confused because if I add element exists activity then there will be some timeout for that as well so firstly it will take some time to check if the element exists and then wait for it to vanish. In this way it will take even more time than the previous. (I hope you are getting my point).
The solution I want is
Whenever that loading bar appears wait for it to vanish then continue typing into the form
First timeout should be something short, the maximum value you expect for the loading bar to appear. The second timeout should be the maximum value you expect for the loading bar to disappear.
If the loading bar can appear in many places of the flow, extract this to a separate workflow and invoke it in the places where the loading bar may appear.
another issue is that there are multiple “Type into” activities in my process and that loading bar appears usually when i done typing into the field and press enter
So that means I have to use that solution you mentioned before and after all my type into activities ??
Or is there a easier way
Thanks