How to skip a group of activities when web page element is not found

Hi Team,

I am trying to develop BOT where BOT needs to skip a group of activities if specified web page element is not found on the web page. Please guide me on this.

Hi @Inzmamul_Haq
u can use element exist activity to check for the ui element exists or not and store the output of this activity in a boolean variable,

then u can use of condition using this variable to check whether the element appeared or not,

if element appeared the boolean variable will have true value , otherwise False.

based on that u can write the flow for skipping flows based on if condition

Hope it helps you

Regards,
Nived N
Happy Automation

@NIVED_NAMBIAR Thanks for your reply. How do you skip a group of activities. Any sample will help me a lot

1 Like

Just use if activity or flow decision. As condition you can use that boolean from element exist. If element exist then perform true part inside if. If not exist then do nothing or do another activities.