标签: xpath nokogiri mechanize
<input type="Checkbox" checked="" name="new">
如果我在文档中有上述html,我如何通过搜索其名称属性来找到它?
编辑1:澄清我正在寻找使用Nokogiri的解决方案
答案 0 :(得分:4)
$agent.page.at('[@name="new"]')
这应该可以解决问题,其中$ agent是包含Mechanize代理的变量