May I ask how to check whether the text in a webpage (for example, the text from the webpage that shown in attached figure) contains the keyword or keywords from an array {abc, def, ghi, …}.
Then using the if condition with that results.
First read entire text and assign it to one string variable. And then split this text based on space as delimiter and will give you output as array of string.
textArray [] = webText.Split(" "c)
And then compare this array with your keywords array to check whether any matching words are there or not.
Oh you haven’t even got an array? Have you used UiPath much before? You might be better off utilising the academy to learn how to use UiPath.
If you’ve got all the keywords you’re looking for in an excel spreadsheet or CSV, you could simply create a datatable and use for each row instead of for each.