b.javascript_dialog().存在吗?在 WATIR 4.0.2 中对我不起作用
b.javascript_dialog().exists? is not working for me in WATIR 4.0.2
当我执行代码时
b.javascript_dialog().exists?
它在 WATIR 3.0.0 中工作正常,但在 WATIR 4.0.2 中抛出以下错误,为什么会这样? "javascript_dialog()"他们有没有给出其他对应的函数?
hello.rb:8:in <main>': undefined method
javascript_dialog' for # (NoMethodError)
Remove Browser#(javascript_)dialog. Use Browser#alert API instead.
javascript_dialog
已替换为 alert
:
b.alert.exists?
当我执行代码时
b.javascript_dialog().exists?
它在 WATIR 3.0.0 中工作正常,但在 WATIR 4.0.2 中抛出以下错误,为什么会这样? "javascript_dialog()"他们有没有给出其他对应的函数?
hello.rb:8:in <main>': undefined method
javascript_dialog' for # (NoMethodError)
Remove Browser#(javascript_)dialog. Use Browser#alert API instead.
javascript_dialog
已替换为 alert
:
b.alert.exists?