File tree 1 file changed +10
-6
lines changed
1 file changed +10
-6
lines changed Original file line number Diff line number Diff line change 13
13
cap [ 'browserstack.tunnel' ] = 'true'
14
14
cap [ 'browserstack.debug' ] = 'false'
15
15
16
+ print 'Loading...'
17
+
16
18
begin
17
19
loop do
18
20
uri = URI . parse ( "https://www.browserstack.com/automate/plan.json" )
31
33
sleep 30
32
34
end
33
35
34
- puts "\r Running specs..."
35
- puts
36
-
37
36
browser = Selenium ::WebDriver . for ( :remote , url : url , desired_capabilities : cap )
38
37
browser . navigate . to ( 'http://localhost:9292' )
39
38
rescue Exception
40
39
retry
41
40
end
42
41
42
+ print "\r Running specs..."
43
+
43
44
begin
44
- Selenium ::WebDriver ::Wait . new ( timeout : 540 , interval : 5 ) \
45
- . until { not browser . find_element ( :css , 'p#totals' ) . text . strip . empty? }
45
+ Selenium ::WebDriver ::Wait . new ( timeout : 1200 , interval : 30 ) . until {
46
+ print '.'
47
+
48
+ not browser . find_element ( :css , 'p#totals' ) . text . strip . empty?
49
+ }
46
50
47
51
totals = browser . find_element ( :css , 'p#totals' ) . text
48
52
duration = browser . find_element ( :css , 'p#duration' ) . find_element ( :css , 'strong' ) . text
49
53
50
- puts "#{ totals } in #{ duration } "
54
+ puts "\r #{ totals } in #{ duration } "
51
55
puts
52
56
53
57
if totals =~ / 0 failures/
You can’t perform that action at this time.
0 commit comments