I am trying to find if a given string, lets say "Hello" exists in a given page. So far I have the following:
agent = Mechanize.new
page = agent.get('http://www.google.de/')
and what should I do now? I have seen the search method, but it only accepts XPath/CSS expressions. I could try to use xpath to search, but is there a better way?