Bot getting stuck and also exception is not thrown

Hi All

Sometimes the bot gets stuck after login and doesn’t click on the next element and also the exception doesn’t get thrown ?
Why is that show? At least the exception should get thrown.

@kkp

If it is skips Click activity then make the click activity->properites ->ContinueonErorr set to False

Hope this helps

Thanks

By default it is false only.

@kkp

OK, you can place a element exist after your click which you expect a unique element, In this way also you can expect the click is happened or not

Hope this helps you

Thanks

@kkp

1.Place your code inside try catch block and use rethrow activity in catch block
2.Sometimes after login, Page loading may take some delay to load all the activities. Hence we need to validate whether the page loaded properly and then allow our bot to proceed further. For example, after login we need to check the home field existence using element exists property and proceed further If activity returns true. Other wise we need to give some time to load the page and act upon.

Thanks,
Deepika