It’s pretty simple
In the sequence where you have activities for sap navigation use the below loop at the place where you face this issue
- Use a assign activity like this
counter = 0
Where counter is a int32 variable
-
Then use a DO WHILE activity
-
Inside the loop use a ELEMENT EXISTS activity and indicate the element in sap that you feel would come after the freeze time
-
Get that output as bool_exists
-
Now use another assign activity inside the loop like this
counter = counter + 1 -
Then use a delay activity inside the same loop like this
00:00:05
Finally with the condition part of do while mention like this
counter < 50 AND NOT bool_Exists
If this condition doesn’t satisfies it will get out of loop which means freeze has gone and bot is ready to act on SAP
- If it goes beyond the counter then it goes to the next sequence in parallel activity
Cheers @anto.santhosh