How to stop bypassing an activity?

Hello Teams,

i face an issue that sometimes bot is moving to activity (B) by pressing Click while activity no (A) is still in action and typing still in progress… i used delay to make sometimes in between (8 sec) but it doesn’t wait I don’t know why (skip the delay), also I delay it from action properties but also it doesn’t wait …may I know the reason and how to solve … BR

image

I suggest after the Type into, do a get text activity instead of a delay, you can then compare if the text matches, or better yet surround the type into, the get text and the if activities with a retry scope, set it to retry at least 3 times if the get text does not equal to currentItem.ToString then throw an exception so that it retries instead of executing the click activity

Or just make use of this option in the properties of the Type into:

1 Like

Thanks SenzoD , i tries your solution , Bot still clicks during typing but verification detected it now as error as below :
image

@sesa499170,

  1. Use input type as Simulate for TypeInto as it will directly paste instantly the whole text instead of one by one character.

  2. Use Verify Execution of Type Into
    Verify

Thanks,
Ashok :slight_smile:

1 Like

solved using this way , thanks alot

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.