@@ -18,7 +18,12 @@ module Appium::Common
18
18
#
19
19
# find_element :text doesn't work so use XPath to find by text.
20
20
21
- # Check every 0.5 seconds to see if block.call is true.
21
+ # Check every 0.5 seconds to see if block.call doesn't raise an exception.
22
+ # if .call raises an exception then it will be tried again.
23
+ # if .call doesn't raise an exception then it will stop waiting.
24
+ #
25
+ # Example: wait { name('back').click }
26
+ #
22
27
# Give up after 30 seconds.
23
28
# @param max_wait [Integer] the maximum time in seconds to wait for
24
29
# @param interval [Float] the time in seconds to wait after calling the block
@@ -27,7 +32,29 @@ module Appium::Common
27
32
def wait max_wait = 30 , interval = 0.5 , &block
28
33
# Rescue Timeout::Error: execution expired
29
34
result = nil
30
- timeout ( max_wait ) { until ( result = begin ; block . call ; rescue ; end ) do ; sleep interval end }
35
+ timeout max_wait do
36
+ puts "Result is nil? #{ result . nil? } #{ result } "
37
+ until ( result = begin ; block . call || true ; rescue ; end )
38
+ sleep interval
39
+ end
40
+ end
41
+ result
42
+ end
43
+
44
+ # Check every 0.5 seconds to see if block.call returns true. nil is considered a failure.
45
+ # Give up after 30 seconds.
46
+ # @param max_wait [Integer] the maximum time in seconds to wait for
47
+ # @param interval [Float] the time in seconds to wait after calling the block
48
+ # @param block [Block] the block to call
49
+ # @return [Object] the result of block.call
50
+ def wait_true max_wait = 30 , interval = 0.5 , &block
51
+ # Rescue Timeout::Error: execution expired
52
+ result = nil
53
+ timeout max_wait do
54
+ until ( result = begin ; block . call ; rescue ; end )
55
+ sleep interval
56
+ end
57
+ end
31
58
result
32
59
end
33
60
0 commit comments