watir-webDriver 是否支持通过 Lightbox 创建的 modal_dialogs?
watir-webdriver 支持 modal_dialog 方法吗?如果没有,是否有另一种方法可以在文本字段中设置一些文本并单击“确定”按钮?
我尝试放置,
browser.modal_dialog.text_field(:name, "0.1.1.7.1.0.0.2.1.6.3.1").set(whatsNew)
但不断收到以下错误消息:
NoMethodError: undefined method `modal_dialog' for #<Watir::Browser:0x1026fa560>
我正在使用 Watir-Webdriver 并且浏览器是 Firefox。
这是我试图访问的元素:
<textarea onblur="document.getElementById('whatsNewinthisVersionUpdateSpinnerId').show();LCAjaxContainer.submitAndUpdate('whatsNewinthisVersionUpdateContainerId');" name="0.1.1.7.1.0.0.2.1.6.3.1">-Bug fixes</textarea>
这是更多 HTML 的链接: http://cl.ly/2k0M0z182w2H2O3v122Q
Is the method modal_dialog supported by watir-webdriver? If not, is there another way for setting some text in a text field and clicking an ok button?
I've tried by putting
browser.modal_dialog.text_field(:name, "0.1.1.7.1.0.0.2.1.6.3.1").set(whatsNew)
but I keep getting the following error message:
NoMethodError: undefined method `modal_dialog' for #<Watir::Browser:0x1026fa560>
I am Using Watir-Webdriver and the browser is Firefox.
This is the element I am trying to access:
<textarea onblur="document.getElementById('whatsNewinthisVersionUpdateSpinnerId').show();LCAjaxContainer.submitAndUpdate('whatsNewinthisVersionUpdateContainerId');" name="0.1.1.7.1.0.0.2.1.6.3.1">-Bug fixes</textarea>
Here is a link to more HTML: http://cl.ly/2k0M0z182w2H2O3v122Q
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这有效吗?
Does this work?