We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2cf3b0 commit a6c6c54Copy full SHA for a6c6c54
spec/runner.rb
@@ -60,14 +60,18 @@
60
rescue Selenium::WebDriver::Error::TimeOutError
61
print "\rTimeout, have fun."
62
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 ")"
+ begin
+ browser.save_screenshot('screenshot.png')
+ response = RestClient.post('https://api.imgur.com/3/upload',
+ { image: File.open('screenshot.png') },
+ { 'Authorization' => 'Client-ID 1979876fe2a097e' })
+
+ print " ("
+ print JSON.parse(response.to_str)['data']['link']
71
+ puts ")"
72
+ rescue Exception
73
+ puts
74
+ end
75
76
browser.quit
77
end
0 commit comments