Skip to content

Commit 7985d44

Browse files
committedJan 25, 2014
spec: ensure the driver is quit properly
1 parent 8d5d045 commit 7985d44

File tree

1 file changed

+3
-11
lines changed

1 file changed

+3
-11
lines changed
 

‎spec/runner.rb

+3-11
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,6 @@
3939
browser = Selenium::WebDriver.for(:remote, url: url, desired_capabilities: cap)
4040
browser.navigate.to('http://localhost:9292')
4141

42-
at_exit {
43-
browser.quit
44-
}
45-
4642
begin
4743
Selenium::WebDriver::Wait.new(timeout: 540, interval: 5) \
4844
.until { not browser.find_element(:css, 'p#totals').text.strip.empty? }
@@ -85,16 +81,12 @@
8581
}
8682
}
8783
rescue Selenium::WebDriver::Error::NoSuchElementError
88-
puts 'ya blew it'
8984
puts browser.page_source
90-
end
91-
rescue Selenium::WebDriver::Error::TimeOutError
92-
trials += 1
93-
94-
unless trials >= 4
85+
ensure
9586
browser.quit
96-
retry
9787
end
88+
rescue Selenium::WebDriver::Error::TimeOutError
89+
retry unless (trials += 1) >= 4
9890
end
9991

10092
exit 1

0 commit comments

Comments
 (0)
Please sign in to comment.