Skip to content

Commit 47f80aa

Browse files
committedJan 25, 2014
spec: take a screenshot in case of failure
1 parent 574b32c commit 47f80aa

File tree

1 file changed

+10
-28
lines changed

1 file changed

+10
-28
lines changed
 

‎spec/runner.rb

+10-28
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,14 @@
3939
retry
4040
end
4141

42+
def screenshot(browser)
43+
browser.capture_entire_page_screenshot('screenshot.png')
44+
request = Net::HTTP.new('imgur.com')
45+
response = request.post('/api/upload.json', image: File.open('screenshot.png'))
46+
47+
JSON.parse(response.body)['rsp']['image']['original_image']
48+
end
49+
4250
print "\rRunning specs..."
4351

4452
begin
@@ -58,37 +66,11 @@
5866
exit 0
5967
end
6068

61-
browser.find_elements(:css, '.example_group').slice_before {|x|
62-
begin
63-
x.find_element(:css, 'dd')
64-
65-
false
66-
rescue Exception
67-
true
68-
end
69-
}.each {|header, *specs|
70-
next unless specs.any? { |x| x.find_element(:css, '.failed') rescue false }
71-
72-
namespace = header.find_element(:css, 'dt').text
73-
74-
specs.each {|group|
75-
next unless group.find_element(:css, '.failed') rescue false
76-
77-
method = group.find_element(:css, 'dt').text
78-
79-
group.find_elements(:css, 'dd.example.failed').each {|el|
80-
puts "#{namespace}#{method}"
81-
puts " #{el.find_element(:css, '.failed_spec_name').text}"
82-
puts
83-
puts el.find_element(:css, '.failure').text
84-
puts
85-
}
86-
}
87-
}
69+
puts screenshot(browser)
8870
rescue Selenium::WebDriver::Error::NoSuchElementError
8971
puts browser.page_source
9072
rescue Selenium::WebDriver::Error::TimeOutError
91-
puts "Timeout, have fun."
73+
puts "\rTimeout, have fun: #{screenshot(browser)}"
9274

9375
exit 0
9476
ensure

0 commit comments

Comments
 (0)