|
82 | 82 |
|
83 | 83 | print "\rRunning specs..."
|
84 | 84 |
|
85 |
| -# wait until the specs have finished, thus changing the content of #totals |
86 |
| -Selenium::WebDriver::Wait.new(timeout: 1200, interval: 30).until { |
87 |
| - print '.' |
| 85 | +begin |
| 86 | + # wait until the specs have finished, thus changing the content of #totals |
| 87 | + Selenium::WebDriver::Wait.new(timeout: 1200, interval: 30).until { |
| 88 | + print '.' |
88 | 89 |
|
89 |
| - not browser['totals'].text.strip.empty? |
90 |
| -} |
| 90 | + not browser['totals'].text.strip.empty? |
| 91 | + } |
91 | 92 |
|
92 |
| -totals = browser['totals'].text |
93 |
| -duration = browser[css: '#duration strong'].text |
| 93 | + totals = browser['totals'].text |
| 94 | + duration = browser[css: '#duration strong'].text |
94 | 95 |
|
95 |
| -print "\r#{totals} in #{duration}" |
| 96 | + print "\r#{totals} in #{duration}" |
96 | 97 |
|
97 |
| -# take a screenshot and upload it to imgur |
98 |
| -begin |
99 |
| - browser.save_screenshot('screenshot.png') |
100 |
| - response = RestClient.post('https://api.imgur.com/3/upload', |
101 |
| - { image: File.open('screenshot.png') }, |
102 |
| - { 'Authorization' => 'Client-ID 1979876fe2a097e' }) |
103 |
| - |
104 |
| - print " (" |
105 |
| - print JSON.parse(response.to_str)['data']['link'] |
106 |
| - puts ")" |
107 |
| -rescue Exception |
108 |
| - puts |
109 |
| -end |
110 |
| - |
111 |
| -# no failures, happy times |
112 |
| -unless totals =~ / 0 failures/ |
113 |
| - exit 1 |
| 98 | + # no failures, happy times |
| 99 | + unless totals =~ / 0 failures/ |
| 100 | + exit 1 |
| 101 | + end |
| 102 | +rescue Selenium::WebDriver::Error::TimeOutError |
| 103 | + print "\rThe specs have timed out." |
| 104 | +ensure |
| 105 | + # take a screenshot and upload it to imgur |
| 106 | + begin |
| 107 | + browser.save_screenshot('screenshot.png') |
| 108 | + response = RestClient.post('https://api.imgur.com/3/upload', |
| 109 | + { image: File.open('screenshot.png') }, |
| 110 | + { 'Authorization' => 'Client-ID 1979876fe2a097e' }) |
| 111 | + |
| 112 | + print " (" |
| 113 | + print JSON.parse(response.to_str)['data']['link'] |
| 114 | + puts ")" |
| 115 | + rescue Exception |
| 116 | + puts |
| 117 | + end |
114 | 118 | end
|
0 commit comments