Screen Scraping Skip Missing Format

Hi, I have a little problem

Im scraping few data from this picture, Including the Uncontrolled Keyword
check2

the problem i have is, im using screen scraping with looping
but then
Check1
theres a page where there aren’t any Uncontrolled Keyword, and it crashed

Is there any way to skip the process if the page doesn’t have the data?

Thanks

1 Like

Hi @Alfian_Naufal,

Use
IF yourscreenscrappingoutput.contains(“Uncontrolled Keywords:”)
Then
Continue with your process
Else
Keep it null

Thanks