如何使用Mechanize获取页面描述?
Pismo gem具有此功能,但它比Mechanize gem更糟糕。例如,Mechanize查找图像标签。
我没有在Mechanize documentation中找到如何获取说明。
有没有人知道更好的插件或我该怎么做?
答案 0 :(得分:2)
试试这个:
node = page.at("head meta[name='description']")
description = node["content"]
(node
是Nokogiri::XML::Node
。)