Skip to content

Commit a6c6c54

Browse files
committedJan 26, 2014
spec: catch errors in the screenshoter
1 parent c2cf3b0 commit a6c6c54

File tree

1 file changed

+12
-8
lines changed

1 file changed

+12
-8
lines changed
 

‎spec/runner.rb

+12-8
Original file line numberDiff line numberDiff line change
@@ -60,14 +60,18 @@
6060
rescue Selenium::WebDriver::Error::TimeOutError
6161
print "\rTimeout, have fun."
6262
ensure
63-
browser.save_screenshot('screenshot.png')
64-
response = RestClient.post('https://api.imgur.com/3/upload',
65-
{ image: File.open('screenshot.png') },
66-
{ 'Authorization' => 'Client-ID 1979876fe2a097e' })
67-
68-
print " ("
69-
print JSON.parse(response.to_str)['data']['link']
70-
print ")"
63+
begin
64+
browser.save_screenshot('screenshot.png')
65+
response = RestClient.post('https://api.imgur.com/3/upload',
66+
{ image: File.open('screenshot.png') },
67+
{ 'Authorization' => 'Client-ID 1979876fe2a097e' })
68+
69+
print " ("
70+
print JSON.parse(response.to_str)['data']['link']
71+
puts ")"
72+
rescue Exception
73+
puts
74+
end
7175

7276
browser.quit
7377
end

0 commit comments

Comments
 (0)
Please sign in to comment.