How to search in specific list of webpages for a couple of words?

I have a list of webpages and I want to know in which one of them the words "looking" or "position" or "prospective" is used. How can I do that ?

Assuming they all have the same layout, you can use the :contains selector. For example,

Type: Text
Selector: h1:contains('looking')

If it matches it will grab the whole h1 headline text. If no match it will return "Null".