我今天早上刚刚开始使用Nokogiri,我想知道如何执行一项简单的任务:我只需要在网页上搜索这样的div:
< div id =“verify”style =“display:none”> site_verification_string< / div>
我希望我的代码看起来像这样:
require 'nokogiri' require 'open-uri' url = h(@user.first_url) doc = Nokogiri::HTML(open(url)) if #SEARCH_FOR_DIV#.text == site_verification_string @user.save end
所以主要问题是,如何使用nokogiri搜索div?
任何帮助表示赞赏.
解决方法
html = <<-HTML <html> <body> <div id="verify" style="display: none;">foobar</div> </body> </html> HTML doc = Nokogiri::HTML html puts 'verified!' if doc.at_css('[id="verify"]').text.eql? 'foobar'