Hello,
I’m working on a process where I need to check if there is data in a table that can be refreshed by clicking on a button.
So I used a “Do While” activity. At each loop, first I click on refresh button, then I check if there is data in the table with the activity “Screen scrapper : Google OCR”. If the table is empty, I need to stop the loop.
It’s working if there is data in the table. But when the table is empty, UiPath is returning two errors :
Goolge OCR: Scrape returned empty text.
Process: Scrape returned empty text.
I tried to use the parameter ContinueOnError = true on the “Get OCR Text” activity but in the case even if the table is empty there is no error and the process is in infinite loop. So I’m not able to check the result.
Any idea how to handle this ?