Search result is empty when using check state app

Hello Guys,

My web search automation is in full swing. I made it continue when it gave a warning in the search results, this time it does not give a warning as a result of the search on the site, an empty result screen comes up. When I define it to uipath, all results are returned as results not found in the excel output…

Example:

Hi @A_Zyzz_Man ,

If there is a stage where you are extracting data, you can verify whether that data is empty or not like so:

If->

IsNothing(dt) OrElse dt.Rows.Count.Equals(0)

Then->
Page returned zero results

Else →
Write to Excel

Kind Regards,
Ashwin A.K

1 Like

@A_Zyzz_Man, maybe you can try with data scraping and if data table is empty, stop.

1 Like

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