I can grab a node that contains "foo", like so:
page.search("div.someclass td:contains('foo')")
How can I get a node that contains either "foo" or "bar". My attempts so far have failed.
I know I can do this with XPath, but I wanted to know if there is an easier solution.