Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用 Mechanize 获取页面描述?
Pismo gem具有此功能,但比Mechanize gem差。例如,机械化查找图像标签。
我没有在Mechanize 文档中找到如何获取描述。
有谁知道更好的插件或我怎么做?
试试这个:
node = page.at("head meta[name='description']") description = node["content"]
(node是一个Nokogiri::XML::Node。)
node
Nokogiri::XML::Node