Hey, @Natron26 ... you can use a contains() function in the left side of your condition if you're just looking for a single string of text, then just make the right side the expression true.
(not the text, go into the expression builder and type 'true' if you're worried)
Something like the below will do the trick in your left side:
contains(toLower(YOUR_DATA), 'THE_TEXT_YOU_WANT_TO_FIND')
Ensuring, of course, that you make THE_TEXT_YOU_WANT_TO_FIND all lowercase to match up with what I did with the toLower() function previously.
But beware, parsing HTML is a slippery slope, even if you change it to text there can be all kinds of strange things that happen to it.
You might be better poking around the page to see if there is either data attributes that you can whittle to, or better yet whether the data on the page is coming from an API that you can leverage yourself!