module Awetestlib module Regression # Methods for waiting until something has happened in the browser or DOM. # sleep_for() is the basic technique. Its disadvantage is that it needs to be set for the longest likely wait time. # The wait methods take advantage of the Watir and Watir Webdriver wait functionality to pause only as long as necessary for # the element in question to be in the state needed. module Waits # Sleep for +seconds+ seconds before continuing execution of the script. # A message is logged (but not reported) which, by default, includes a trace showing where in the script the sleep was invoked. # @param [Fixnum] seconds The number of seconds to wait. # @param [Boolean] dbg If true, includes a trace in the message # @param [String] desc Contains a message or description intended to appear in the log and/or report output. def sleep_for(seconds, dbg = true, desc = '') trace = "\n#{get_debug_list}" if dbg msg = build_message("Sleeping for #{seconds} seconds.", desc, trace) info_to_log(msg) sleep(seconds) end # Wait for a specific text to appear in the +browser+. # @param [Watir::Browser] browser A reference to the browser window or container element to be tested. # @param [String, Regexp] text A string or a regular expression to be found in the *how* attribute that uniquely identifies the element. # @param [String] desc Contains a message or description intended to appear in the log and/or report output # @param [Fixnum] threshold The number of seconds after which a warning is added to the report message. # @param [Fixnum] interval The time between checks that the text exists. # @return [Boolean] Returns true if the text appears before +how_long+ has expired. def hold_for_text(browser, how_long, text, desc = '', threshold = 20, interval = 0.25) countdown = how_long while ((not browser.contains_text(text)) and countdown > 0) sleep(interval) countdown = countdown - interval end if countdown < how_long waittime = how_long - countdown passed_to_log("#{__method__} '#{text}' found after #{waittime} second(s) #{desc}") if waittime > threshold failed_to_log("#{__method__} '#{text}' took #{waittime} second(s). (threshold: #{threshold} seconds) #{desc}") end true else failed_to_log("#{__method__} '#{text}' not found after #{how_long} second(s) #{desc}") false end rescue failed_to_log("Unable to #{__method__} '#{text}'. '#{$!}' #{desc}") end alias wait_for_text hold_for_text # Wait while an element identified by attribute +how+ with value +what+ 1) exists, disappears, and exists again. # @param [Watir::Browser] browser A reference to the browser window or container element to be tested. # @param [Symbol] how The element attribute used to identify the specific element. # Valid values depend on the kind of element. # Common values: :text, :id, :title, :name, :class, :href (:link only) # @param [String, Regexp] what A string or a regular expression to be found in the *how* attribute that uniquely identifies the element. # @param [String] desc Contains a message or description intended to appear in the log and/or report output # @param [Fixnum] timeout # @return [Boolean] Returns true if disappears and reappears, each within the +timeout+ limit def wait_for_element_to_reappear(browser, how, what, desc = '', timeout = 20) msg = "Element #{how}=#{what} exists. #{desc}" wait_while(browser, "While: #{msg}", timeout) { browser.element(how, what).exists? } wait_until(browser, "Until: #{msg}", timeout) { browser.element(how, what).exists? } end # how_long is integer, what_for is a browser object def wait_for_exists(how_long, what_for) wait_for(how_long, what_for) end def wait_for(how_long, what_for) countdown = how_long while ((not what_for.exists?) and countdown > 0) sleep(1) puts what_for.inspect+':'+countdown.to_s countdown = countdown - 1 end if countdown puts 'found '+what_for.inspect passed_tolog("wait_for (#{how_long} found "+what_for.inspect) else puts 'Did not find '+what_for.inspect failed_tolog("wait_for (#{how_long} did not find "+what_for.inspect) end countdown end def wait_the_hard_way(browser, how, what, wait = 6, intvl = 0.25) count = (wait / intvl).to_i + 1 tally = 0 ok = (1 / intvl).to_i + 1 debug_to_log("#{__method__}: wait: #{wait} secs; intvl: #{intvl} secs; count; #{count}; thresh: #{ok}") (1..count).each do |x| begin if browser.element(how, what).exists? tally += 1 debug_to_log("#{x}: #{(x - 1) * intvl}: #{what} exists.") else tally = 0 debug_to_log("#{x}: #{(x - 1) * intvl}: #{what} does not exist.") end rescue tally = 0 debug_to_log("#{x}: #{(x - 1) * intvl}: #{what} rescue: #{$!}") end if tally >= ok return true end sleep(intvl) end end def wait_until_exists(browser, element, how, what, desc = '') msg = "Wait until (#{element} :#{how}=>#{what}) exists." msg << " #{desc}" if desc.length > 0 start = Time.now.to_f # TODO: try Watir::Wait.until { browser.element(how, what).exists? } instead of this (cumbersome) case statement # TODO: above fails on frame begin case element when :link Watir::Wait.until { browser.link(how, what).exists? } when :button Watir::Wait.until { browser.button(how, what).exists? } when :radio Watir::Wait.until { browser.radio(how, what).exists? } when :checkbox Watir::Wait.until { browser.checkbox(how, what).exists? } when :div Watir::Wait.until { browser.div(how, what).exists? } when :select_list Watir::Wait.until { browser.select_list(how, what).exists? } when :text_field Watir::Wait.until { browser.text_field(how, what).exists? } when :frame Watir::Wait.until { browser.frame(how, what).exists? } when :form Watir::Wait.until { browser.form(how, what).exists? } when :cell Watir::Wait.until { browser.cell(how, what).exists? } when :image Watir::Wait.until { browser.image(how, what).exists? } else Watir::Wait.until { browser.element(how, what).exists? } end rescue => e if e.class.to_s =~ /TimeOutException/ failed_to_log("#{msg}: '#{$!}'") return false elsif not rescue_me(e, __method__, "#{block.to_s}", "#{browser.class}") raise e end end stop = Time.now.to_f #debug_to_log("#{__method__}: start:#{start} stop:#{stop}") # sleep 1 passed_to_log("#{msg} (#{stop - start} seconds)") true rescue failed_to_log("Unable to complete #{msg}: '#{$!}'") end def wait_while(browser, desc, timeout = 45, &block) #TODO: Would like to be able to see the block code in the log message instead of the identification msg = "Wait while #{desc}:" start = Time.now.to_f begin #Watir::Wait.until(timeout) { block.call(nil) } if block.call(nil) Watir::Wait.while(timeout) { block.call(nil) } end rescue => e if e.class.to_s =~ /TimeOutException/ or e.message =~ /timed out/ failed_to_log("#{msg}: '#{$!}' ") return false elsif not rescue_me(e, __method__, "#{block.to_s}", "#{browser.class}") raise e end end stop = Time.now.to_f #debug_to_log("#{__method__}: start:#{start} stop:#{stop} block: #{block.to_s}") # sleep 1 passed_to_log("#{msg} (#{"%.5f" % (stop - start)} seconds)") # {#{block.to_s}}") true rescue failed_to_log("Unable to complete #{msg}. '#{$!}'") end alias wait_while_true wait_while def wait_until(browser, desc, timeout = 45, skip_pass = false, &block) #TODO: Would like to be able to see the block code in the log message instead of the identification msg = "Wait until #{desc}" start = Time.now.to_f begin Watir::Wait.until(timeout) { block.call(nil) } rescue => e if e.class.to_s =~ /TimeOutException/ or e.message =~ /timed out/ failed_to_log("#{msg} '#{$!}'") return false elsif not rescue_me(e, __method__, "#{block.to_s}", "#{browser.class}") raise e end end stop = Time.now.to_f #debug_to_log("#{__method__}: start:#{start} stop:#{stop} block: #{block.to_s}") # sleep 1 passed_to_log("#{msg} (#{"%.5f" % (stop - start)} seconds)") unless skip_pass # {#{block.to_s}}") true rescue failed_to_log("Unable to complete #{msg} '#{$!}'") end alias wait_until_true wait_until def wait_until_by_radio_value(browser, strg, desc = '') wait_until_exists(browser, :radio, :value, strg, desc) end def wait_until_ready(browser, how, what, desc = '', timeout = 90, verbose = false) msg = "#{__method__.to_s.titleize}: element: #{how}='#{what}'" msg << " #{desc}" if desc.length > 0 proc_exists = Proc.new { browser.element(how, what).exists? } proc_enabled = Proc.new { browser.element(how, what).enabled? } case how when :href proc_exists = Proc.new { browser.link(how, what).exists? } proc_enabled = Proc.new { browser.link(how, what).enabled? } end if verbose if wait_until(browser, "#{msg} Element exists.", timeout) { proc_exists.call(nil) } if wait_until(browser, "#{msg} Element enabled.", timeout) { proc_enabled.call(nil) } passed_to_log(msg) true else failed_to_log(msg) end else failed_to_log(msg) end else start = Time.now.to_f if Watir::Wait.until(timeout) { proc_exists.call(nil) } if Watir::Wait.until(timeout) { proc_enabled.call(nil) } stop = Time.now.to_f #debug_to_log("#{__method__}: start:#{"%.5f" % start} stop:#{"%.5f" % stop}") passed_to_log("#{msg} (#{"%.5f" % (stop - start)} seconds)") true else failed_to_log(msg) end else failed_to_log(msg) end end rescue failed_to_log("Unable to #{msg}. '#{$!}'") end def wait_until_ready_quiet(browser, how, what, desc = '', timeout = 45, quiet = true) msg = "#{__method__.to_s.titleize}: element: #{how}='#{what}'" msg << " #{desc}" if desc.length > 0 proc_exists = Proc.new { browser.element(how, what).exists? } proc_enabled = Proc.new { browser.element(how, what).enabled? } case how when :href proc_exists = Proc.new { browser.link(how, what).exists? } proc_enabled = Proc.new { browser.link(how, what).enabled? } end start = Time.now.to_f if Watir::Wait.until(timeout) { proc_exists.call(nil) } if Watir::Wait.until(timeout) { proc_enabled.call(nil) } stop = Time.now.to_f #debug_to_log("#{msg}: start:#{"%.5f" % start} stop:#{"%.5f" % stop}") passed_to_log("#{msg} (#{"%.5f" % (stop - start)} seconds)") unless quiet true else failed_to_log(msg) end else failed_to_log(msg) end rescue failed_to_log("Unable to #{msg}. '#{$!}'") end def wait_until_text(browser, strg, desc = '', timeout = 60) if not strg.class.to_s.match('String') raise "#{__method__} requires String for search target. #{strg.class} is not supported." end wait_until(browser, "'#{strg}' #{desc}", timeout) { browser.text.include? strg } end alias wait_until_by_text wait_until_text def wait_until_by_link_text(browser, strg, desc = '') wait_until_exists(browser, :link, :text, strg, desc) end def wait_until_enabled(browser, what, how, value, desc = '') # TODO: This can be simplified start = Time.now.to_f begin case what when :link Watir::Wait.until { browser.link(how, value).enabled? } when :button Watir::Wait.until { browser.button(how, value).enabled? } when :radio Watir::Wait.until { browser.radio(how, value).enabled? } when :checkbox Watir::Wait.until { browser.checkbox(how, value).enabled? } when :div Watir::Wait.until { browser.div(how, value).enabled? } when :select_list Watir::Wait.until { browser.select_list(how, value).enabled? } when :text_field Watir::Wait.until { browser.text_field(how, value).enabled? } when :table Watir::Wait.until { browser.table(how, value).enabled? } else raise "#{__method__}: Element #{what} not supported." end rescue => e if e.class.to_s =~ /TimeOutException/ failed_to_log("Wait until (#{what} :#{how}=>#{value}) enabled. #{desc}: '#{$!}' #{desc}") return false elsif not rescue_me(e, __method__, "#{block.to_s}", "#{browser.class}") raise e end end stop = Time.now.to_f #debug_to_log("#{__method__}: start:#{start} stop:#{stop}") # sleep 1 passed_to_log("Wait until (#{what} :#{how}=>#{value}) enabled. #{desc} (#{stop - start} seconds)") true rescue failed_to_log("Unable to complete wait until (#{what} :#{how}=>#{value}) enabled. #{desc}: '#{$!}'") end def wait_until_visible(browser, element, how, what, desc = '') start = Time.now.to_f Watir::Wait.until(20) { browser.element(how, what).exists? } begin case element when :link Watir::Wait.until { browser.link(how, what).visible? } when :button Watir::Wait.until { browser.button(how, what).visible? } when :radio Watir::Wait.until { browser.radio(how, what).visible? } when :checkbox Watir::Wait.until { browser.checkbox(how, what).visible? } when :div Watir::Wait.until { browser.div(how, what).visible? } when :select_list Watir::Wait.until { browser.select_list(how, what).visible? } when :text_field Watir::Wait.until { browser.text_field(how, what).visible? } else Watir::Wait.until { browser.element(how, what).visible? } # raise "#{__method__}: Element #{what} not supported." end rescue => e if e.class.to_s =~ /TimeOutException/ failed_to_log("Wait until (#{what} :#{how}=>#{what}) visible. #{desc}: '#{$!}' #{desc}") return false elsif not rescue_me(e, __method__, '', "#{browser.class}") raise e end end stop = Time.now.to_f #debug_to_log("#{__method__}: start:#{start} stop:#{stop}") # sleep 1 passed_to_log("Wait until (#{element} :#{how}=>#{what}) visible. #{desc} (#{stop - start} seconds)") true rescue failed_to_log("Unable to complete wait until (#{element} :#{how}=>#{what}) visible. #{desc}: '#{$!}'") end end end end