How to give a wait to the Bot? Not delay

Hi @balkishan,

Buddy, you can sort this out easily…!

there are options like

  1. On element appear - if you are able to access that element of the status word like “Pending” or “Responded” you can make use of this activity. You can increase the timeoutMS value in this activity properties to the minutes you want. But the beauty is the process wont wait till the time you mention in timeoutMS, rather will continue the process, the moment robot finds the element. This is unlike delay activity that would wait till the time mentioned and thus impact the bot performance. Thats the reason why we avoid delay activity mostly unless it is citrix without image accessibility.

  2. Wait attribute - Again this activity will apply only if you can access the element as mentioned above and is the most reliable one for your case. Because you can wait till the attribute value of “aastate” gets changes to “Responded” from “Pending”. Once this string is met with the attribute, you can proceed further. Again you can mention the timeoutMS as you want.

  3. On image appear - if you are not able to access the element of those strings, you can use this image activity. Once the image of the string “Responded” is found you can continue further and again you can mention the timeoutMS as required.

Hope this would help you…1
Cheerss…!

4 Likes