3

我们的网站在整个网站上有多个 javascript 弹出窗口。当您单击打开一个弹出窗口时,屏幕会稍微变灰并显示一个动画图像,然后一旦加载实际的弹出窗口。当弹出窗口关闭时,它会随着略带灰色的屏幕消失。我可以打开并使用 wait_until_present 单击关闭按钮,但我的测试总是失败,因为下一个元素不可单击。它适用于睡眠,但要远离它。我曾尝试对下一个元素使用其他等待方法,但无法找出最佳方法。下面是我正在尝试做的一个例子。

require 'watir-webdriver'

browser = Watir::Browser.new :chrome
browser.goto('www.hayneedle.com')

browser.img(:src, 'http://images.hayneedle.com/shared/images/HN_Free_Shipping_Easy_Returns_Low.png').click

browser.a(:id, 'hn_modal_close').wait_until_present
browser.a(:id, 'hn_modal_close').click

#this is the element that is not clickable because the popup is still closing
browser.a(:href, 'http://www.hayneedle.com/bath/').click
4

2 回答 2

3

等待某些东西可用的替代方法是等到某些东西不可用。在这种情况下,您似乎应该等待弹出窗口消失。

当我运行你的代码时,我得到了异常:

Element is not clickable at point (449, 142). Other element would receive the click: <div id="hn_modal_bg"></div> (Selenium::WebDriver::Error::UnknownError)

因此,我们可能应该等待<div id="hn_modal_bg"></div>消失。这可以通过使用wait_while_present方法来完成。

browser.a(:id, 'hn_modal_close').wait_until_present
browser.a(:id, 'hn_modal_close').click

#Wait for the gray background to disappear
browser.div(:id, 'hn_modal_bg').wait_while_present

browser.a(:href, 'http://www.hayneedle.com/bath/').click
于 2013-07-25T13:29:41.287 回答
0

这有帮助吗?

browser.a(:href, 'http://www.hayneedle.com/bath/').when_present.click

有关等待的更多信息,请参阅http://watirwebdriver.com/waiting/

于 2013-07-25T12:39:39.063 回答