We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d5d045 commit 7985d44Copy full SHA for 7985d44
spec/runner.rb
@@ -39,10 +39,6 @@
39
browser = Selenium::WebDriver.for(:remote, url: url, desired_capabilities: cap)
40
browser.navigate.to('http://localhost:9292')
41
42
- at_exit {
43
- browser.quit
44
- }
45
-
46
begin
47
Selenium::WebDriver::Wait.new(timeout: 540, interval: 5) \
48
.until { not browser.find_element(:css, 'p#totals').text.strip.empty? }
@@ -85,16 +81,12 @@
85
81
}
86
82
87
83
rescue Selenium::WebDriver::Error::NoSuchElementError
88
- puts 'ya blew it'
89
84
puts browser.page_source
90
- end
91
-rescue Selenium::WebDriver::Error::TimeOutError
92
- trials += 1
93
94
- unless trials >= 4
+ ensure
95
browser.quit
96
- retry
97
end
+rescue Selenium::WebDriver::Error::TimeOutError
+ retry unless (trials += 1) >= 4
98
99
100
exit 1
0 commit comments