gpt4 book ai didi

ruby - Watir 4.0.2单击会使浏览器崩溃

转载 作者:行者123 更新时间:2023-12-02 07:28:01 25 4
gpt4 key购买 nike

dat是我的第一篇文章,我的问题是:
dat是我的代码,其中b = Watir::Browser.new

options =  b.select().options

options.each { |opt|
s = opt.text
i = s.length() - 1
if s[i-1] == '(' then
puts s
b.select().select_value(s)
b.text_field(:id =>'nombre',:name =>'nombre').value = '0'
b.input(:class => 'bouton-ajouter').click
end
}
当单击执行时,它停止执行每个操作而崩溃,我不知道为什么?

最佳答案

我不知道您要做什么,但是我已经更正了您的程序,尝试一下

require 'watir'

b = Watir::Browser.new

b.select_list.options.each { |opt|
s = opt.text
if s.chars.last == '('
puts s
b.select_list.option(text: s).select
b.text_field(:id => 'nombre', :name => 'nombre').set '0'
b.input(:class => 'bouton-ajouter').click
end
}

关于ruby - Watir 4.0.2单击会使浏览器崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64124249/

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