I am running a do-while activity, I am now using true for the condition. Anyone know how to write a condition to stop scraping when seeing the title or element of the webpage below?
this is my workflow:
I am running a do-while activity, I am now using true for the condition. Anyone know how to write a condition to stop scraping when seeing the title or element of the webpage below?
this is my workflow:
Hi @Paul_Li2,
Not String.IsNullOrEmpty(yourVariableContainingTitleOrElement)
Hi @Paul_Li2 Use On Element Appear
activity to check the element. If it exists then just break the loop using Break
activity
Hey @Paul_Li2
Just at the end of your workflow i.e at targer does not appear use this continue activity.
Hope this works
Cheers