How to not wait for something with Watir-Webdriver(如何不等待 Watir-Webdriver 的某些东西)
问题描述
所以我正在编写一个 watir-webdriver 脚本,而我的应用程序正在使用 javascript 来呈现一个我想要与之交互的模式窗口.当我单击显示模态窗口的元素时,watir-webdriver 只是坐在那里,直到最终超时,我在控制台窗口上看到一个 Timeout::Error.这是在尝试与新窗口进行交互之前.我假设它正在轮询 DOM 以获得一些更改并且没有得到它,我如何告诉它继续前进而不等待?
So I'm writing a watir-webdriver script, and my app is using javascript to present a modal window that I want to interact with. When I click the element that presents the modal window, watir-webdriver just sits there until eventually it times out and i see a Timeout::Error on the console window. This is before attempting to interact with the new window at all. I'm assuming it's polling the DOM for some change and not getting it, how do I tell it to move on without waiting?
推荐答案
答案是,然后手动处理必要的等待
The answer ended up being, and then handling the necessary waiting manually
element.focus
element.send_keys :return
这篇关于如何不等待 Watir-Webdriver 的某些东西的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何不等待 Watir-Webdriver 的某些东西


- 使用RSelum从网站(报纸档案)中抓取多个网页 2022-09-06
- 400或500级别的HTTP响应 2022-01-01
- Fetch API 如何获取响应体? 2022-01-01
- addEventListener 在 IE 11 中不起作用 2022-01-01
- Quasar 2+Apollo:错误:找不到ID为默认的Apollo客户端。如果您在组件设置之外,请使用ProvideApolloClient() 2022-01-01
- Css:将嵌套元素定位在父元素边界之外一点 2022-09-07
- 如何使用 JSON 格式的 jQuery AJAX 从 .cfm 页面输出查 2022-01-01
- 失败的 Canvas 360 jquery 插件 2022-01-01
- Flexslider 箭头未正确显示 2022-01-01
- CSS媒体查询(最大高度)不起作用,但为什么? 2022-01-01