オプションのループで呼び出しをラップすることにより、このシナリオを処理するセレン上にレイヤーを作成することになりました。だからあなたがするとき:
@browser.click "#my_button_id"
AutomatedTesterが上記で提案したのと同様のことを行います。
class Browser
def click(locator)
wait_for_element(locator, :timeout => PAGE_EVENT_TIMEOUT)
@selenium.click(locator)
end
def wait_for_element(locator, options)
timeout = options[:timeout] || PAGE_LOAD_TIMEOUT
selenium_locator = locator.clone
expression = <<EOF
var element;
try {
element = selenium.browserbot.findElement('#{selenium_locator}');
} catch(e) {
element = null;
};
element != null;
EOF
begin
selenium.wait_for_condition(expression, timeout)
rescue ::Selenium::SeleniumException
raise "Couldn't find element with locator '#{locator}' on the page: #{$!}.\nThe locator passed to selenium was '#{selenium_locator}'"
end
end
end
ラッパーは、ボタン/入力ラベルによる検索など、他のことも行いました(したがって、ラッパーはタイミングの問題のためだけに存在するのではなく、これは私たちがそこに置いたものの1つにすぎませんでした)。