Skip to content

Commit 353ba81

Browse files
committedJan 25, 2014
spec: some runner improvements
1 parent f9280e4 commit 353ba81

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed
 

‎spec/runner.rb

+10-6
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
cap['browserstack.tunnel'] = 'true'
1414
cap['browserstack.debug'] = 'false'
1515

16+
print 'Loading...'
17+
1618
begin
1719
loop do
1820
uri = URI.parse("https://www.browserstack.com/automate/plan.json")
@@ -31,23 +33,25 @@
3133
sleep 30
3234
end
3335

34-
puts "\rRunning specs..."
35-
puts
36-
3736
browser = Selenium::WebDriver.for(:remote, url: url, desired_capabilities: cap)
3837
browser.navigate.to('http://localhost:9292')
3938
rescue Exception
4039
retry
4140
end
4241

42+
print "\rRunning specs..."
43+
4344
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+
}
4650

4751
totals = browser.find_element(:css, 'p#totals').text
4852
duration = browser.find_element(:css, 'p#duration').find_element(:css, 'strong').text
4953

50-
puts "#{totals} in #{duration}"
54+
puts "\r#{totals} in #{duration}"
5155
puts
5256

5357
if totals =~ / 0 failures/

0 commit comments

Comments
 (0)
Please sign in to comment.