I want to execute a sequence but a condition must be given. In the browser, I perform 2 clicks until I arrive at an overview page. Sometimes there is a button here, sometimes not. How can I teach the bot that if the button is there, the following steps should be executed and if the button is not there, to skip flying steps.
Use Element Exists activity and indicate that button and it will give output as Boolean value. If it is exists then it will give output as True and then you perform next steps. If it is not exists then it will give output as False and then you can skip it.
If your query resolved then please close this thread by marking appropriate post as solution. So that it will help others who are facing similar issue.
By Default it will wait for 30 sec to check whether that element exists or not. You can reduce the time if BOT doesn’t want to wait for that much time.