gpt4 book ai didi

ruby - Mechanize :搜索所有表格

转载 作者:太空宇宙 更新时间:2023-11-03 18:29:11 25 4
gpt4 key购买 nike

似乎这两个都让我可以访问文档中的第一个 FORM 元素:

page.form
page.forms.first

如何搜索特定的复选框,例如

page.form.checkbox_with(:name=>"yep")

如果我不知道里面是哪个FORM呢?

最佳答案

您是想要所有带有该复选框的表单,还是只想要第一个?

对于第一个,做

form = page.forms.detect { |f| f.checkbox_with(:name => "yep" ) }

对所有人来说,做

forms = page.forms.select { |f| f.checkbox_with(:name => "yep" ) }

关于ruby - Mechanize :搜索所有表格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6689587/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com