Module: Calabash::Android::WaitHelpers
- Included in:
- Operations
- Defined in:
- lib/calabash-android/wait_helpers.rb
Defined Under Namespace
Classes: WaitError
Constant Summary collapse
- DEFAULT_OPTS =
‘post_timeout’ is the time to wait after a wait function returns true
{ :timeout => 30, :retry_frequency => 0.3, :post_timeout => 0, :timeout_message => 'Timed out waiting...', :screenshot_on_error => true }.freeze
Instance Method Summary collapse
- #handle_error_with_options(ex, timeout_message, screenshot_on_error) ⇒ Object
- #screenshot_and_retry(msg, &block) ⇒ Object
-
#until_element_does_not_exist(uiquery, opts = {}) ⇒ Object
Performs a lambda action until the element (a query string) disappears.
-
#until_element_exists(uiquery, opts = {}) ⇒ Object
Performs a lambda action until the element (a query string) appears.
- #wait_error(msg) ⇒ Object
- #wait_for(options_or_timeout = DEFAULT_OPTS, &block) ⇒ Object
- #wait_for_activity(activity_name, options = {}) ⇒ Object
-
#wait_for_element_does_not_exist(uiquery, options = {}) ⇒ Object
options for wait_for apply.
-
#wait_for_element_exists(uiquery, options = {}) ⇒ Object
options for wait_for apply.
-
#wait_for_elements_do_not_exist(elements_arr, options = {}) ⇒ Object
options for wait_for apply.
-
#wait_for_elements_exist(elements_arr, options = {}) ⇒ Object
options for wait_for apply.
- #wait_for_text(text, options = {}) ⇒ Object
- #wait_for_text_to_disappear(text, options = {}) ⇒ Object
- #wait_poll(opts, &block) ⇒ Object
-
#when_element_exists(uiquery, opts = {}) ⇒ Object
Performs a lambda action once the element exists.
Instance Method Details
#handle_error_with_options(ex, timeout_message, screenshot_on_error) ⇒ Object
118 119 120 121 122 123 124 125 126 127 128 |
# File 'lib/calabash-android/wait_helpers.rb', line 118 def (ex, , screenshot_on_error) msg = ( || ex) if ex msg = "#{msg} (#{ex.class})" end if screenshot_on_error screenshot_and_raise msg else raise msg end end |
#screenshot_and_retry(msg, &block) ⇒ Object
56 57 58 59 60 61 62 63 64 65 66 67 |
# File 'lib/calabash-android/wait_helpers.rb', line 56 def screenshot_and_retry(msg, &block) path = screenshot res = yield # Validate after taking screenshot if res FileUtils.rm_f(path) return res else (path, 'image/png', msg) raise wait_error(msg) end end |
#until_element_does_not_exist(uiquery, opts = {}) ⇒ Object
Performs a lambda action until the element (a query string) disappears. The default action is to do nothing.
Raises an error if no uiquery is specified. Same options as wait_for which are timeout, retry frequency, post_timeout, timeout_message, and screenshot on error.
Example usage: until_element_does_not_exist(“Button”, :action => lambda { swipe(“up”) })
160 161 162 163 164 165 166 167 |
# File 'lib/calabash-android/wait_helpers.rb', line 160 def until_element_does_not_exist(uiquery, opts = {}) condition = lambda { element_exists(uiquery) ? false : true } extra_opts = { :until => condition, :action => lambda { ; } } opts = DEFAULT_OPTS.merge(extra_opts).merge(opts) wait_poll(opts) do opts[:action].call end end |
#until_element_exists(uiquery, opts = {}) ⇒ Object
Performs a lambda action until the element (a query string) appears. The default action is to do nothing.
Raises an error if no uiquery is specified. Same options as wait_for which are timeout, retry frequency, post_timeout, timeout_message, and screenshot on error.
Example usage: until_element_exists(“Button”, :action => lambda { swipe(“up”) })
143 144 145 146 147 148 149 |
# File 'lib/calabash-android/wait_helpers.rb', line 143 def until_element_exists(uiquery, opts = {}) extra_opts = { :until_exists => uiquery, :action => lambda { ; } } opts = DEFAULT_OPTS.merge(extra_opts).merge(opts) wait_poll(opts) do opts[:action].call end end |
#wait_error(msg) ⇒ Object
130 131 132 |
# File 'lib/calabash-android/wait_helpers.rb', line 130 def wait_error(msg) (msg.is_a?(String) ? WaitError.new(msg) : msg) end |
#wait_for(options_or_timeout = DEFAULT_OPTS, &block) ⇒ Object
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
# File 'lib/calabash-android/wait_helpers.rb', line 19 def wait_for(=DEFAULT_OPTS, &block) #note Hash is preferred, number acceptable for backwards compat default_timeout = 30 timeout = || default_timeout post_timeout=0 retry_frequency=0.3 = nil screenshot_on_error = true if .is_a?(Hash) timeout = [:timeout] || default_timeout retry_frequency = [:retry_frequency] || retry_frequency post_timeout = [:post_timeout] || post_timeout = [:timeout_message] if .key?(:screenshot_on_error) screenshot_on_error = [:screenshot_on_error] end end begin Timeout::timeout(timeout, WaitError) do sleep(retry_frequency) until yield end sleep(post_timeout) if post_timeout > 0 rescue WaitError => e msg = || e if screenshot_on_error sleep(retry_frequency) return screenshot_and_retry(msg, &block) else raise wait_error(msg) end rescue Exception => e (e, nil, screenshot_on_error) end end |
#wait_for_activity(activity_name, options = {}) ⇒ Object
197 198 199 200 201 |
# File 'lib/calabash-android/wait_helpers.rb', line 197 def wait_for_activity(activity_name, ={}) wait_for() do perform_action('get_activity_name')['message'] == activity_name end end |
#wait_for_element_does_not_exist(uiquery, options = {}) ⇒ Object
options for wait_for apply
103 104 105 |
# File 'lib/calabash-android/wait_helpers.rb', line 103 def wait_for_element_does_not_exist(uiquery, ={}) wait_for_elements_do_not_exist([uiquery], ) end |
#wait_for_element_exists(uiquery, options = {}) ⇒ Object
options for wait_for apply
87 88 89 |
# File 'lib/calabash-android/wait_helpers.rb', line 87 def wait_for_element_exists(uiquery, ={}) wait_for_elements_exist([uiquery], ) end |
#wait_for_elements_do_not_exist(elements_arr, options = {}) ⇒ Object
options for wait_for apply
108 109 110 111 112 113 114 115 116 |
# File 'lib/calabash-android/wait_helpers.rb', line 108 def wait_for_elements_do_not_exist(elements_arr, ={}) if elements_arr.is_a?(String) elements_arr = [elements_arr] end [:timeout_message] = [:timeout_message] || "Timeout waiting for no elements matching: #{elements_arr.join(",")}" wait_for() do elements_arr.none? { |q| element_exists(q) } end end |
#wait_for_elements_exist(elements_arr, options = {}) ⇒ Object
options for wait_for apply
92 93 94 95 96 97 98 99 100 |
# File 'lib/calabash-android/wait_helpers.rb', line 92 def wait_for_elements_exist(elements_arr, ={}) if elements_arr.is_a?(String) || elements_arr.is_a?(Symbol) elements_arr = [elements_arr.to_s] end [:timeout_message] = [:timeout_message] || "Timeout waiting for elements: #{elements_arr.join(",")}" wait_for() do elements_arr.all? { |q| element_exists(q) } end end |
#wait_for_text(text, options = {}) ⇒ Object
189 190 191 |
# File 'lib/calabash-android/wait_helpers.rb', line 189 def wait_for_text(text, ={}) wait_for_element_exists("* {text CONTAINS[c] '#{text}'}", ) end |
#wait_for_text_to_disappear(text, options = {}) ⇒ Object
193 194 195 |
# File 'lib/calabash-android/wait_helpers.rb', line 193 def wait_for_text_to_disappear(text, ={}) wait_for_element_does_not_exist("* {text CONTAINS[c] '#{text}'}", ) end |
#wait_poll(opts, &block) ⇒ Object
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 |
# File 'lib/calabash-android/wait_helpers.rb', line 69 def wait_poll(opts, &block) test = opts[:until] if test.nil? cond = opts[:until_exists] raise "Must provide :until or :until_exists" unless cond test = lambda { element_exists(cond) } end wait_for(opts) do if test.call() true else yield false end end end |
#when_element_exists(uiquery, opts = {}) ⇒ Object
Performs a lambda action once the element exists. The default behavior is to touch the specified element.
Raises an error if no uiquery is specified. Same options as wait_for which are timeout, retry frequency, post_timeout, timeout_message, and screenshot on error.
Example usage: when_element_exists(“Button”, :timeout => 10)
177 178 179 180 181 182 183 184 185 186 187 |
# File 'lib/calabash-android/wait_helpers.rb', line 177 def when_element_exists(uiquery, opts = {}) action = { :action => lambda { touch uiquery } } opts = action.merge(opts) wait_for_elements_exist([uiquery], opts) if opts[:action].parameters.length == 0 opts[:action].call else opts[:action].call(uiquery) end end |