How to solve this type of error?

I am click on login option that time my internet is slow that time that does not click?
Workflow failing due to slow Internet Connectivity

Hi @Neeraj_Gupta1

Can you try by using delay activity or place delay before in the properties of the click activity

@Neeraj_Gupta1

Use retry scope in your workflow if the internet connectvity is slow at that time it will retry to click the login option once the internet is available.

@Neeraj_Gupta1

You can add verify execution option in modern click with retry scope

Cheers

Hi @Neeraj_Gupta1

=> You can use Retry Scope activity and keep that Click Actviity under that so thar it will until the element gets clicked.
=> If you are using Modern Click acitivity you will have Verify execcution option which you will get by clicking the 3 lines on the activity.
=> Enable the property Wait Page to load= Complete in Click activity.

Hope it helps!!

Hi @Neeraj_Gupta1

In this case you can use Retry scope activity which used to retry to click the element. There is two blocks in the retry scope, one is action block and second one is condition block.

=> In the action block give the click activity and indicate the login element.
=> After click activity, use delay activity to give delay for sometime. Like 5 seconds.
=> In the condition activity insert the element exist activity and indicate the home page after login.

In retry scope there is a option in properties, you can specify the number of retries on your condition.

The bot go to action block and execute the activities after that it went to condition block and check the condition if element exist fails then it will went to action scope, if the element exist true then it will come out of retry scope.

In maximum of internet issue situations we use retry scope.

Hope it helps!!

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