使用mechanize在html页面中查找字符串

时间:2013-07-16 09:39:11

标签: ruby-on-rails ruby mechanize mechanize-python

我试图找到一个给定的字符串,让我们在给定页面中说“Hello”。到目前为止,我有以下内容:

agent = Mechanize.new

page = agent.get('http://www.google.de/')

我现在该怎么办?我见过搜索方法,但它只接受XPath / CSS表达式。我可以尝试使用xpath进行搜索,但是有更好的方法吗?

1 个答案:

答案 0 :(得分:5)

您只需进行一般文字搜索:

page.body.include?('Hello')

但是,在搜索特定的html节点时,我建议使用css选择器:

page.parser.css('#my_container_element').text.include? 'Hello'