|
39 | 39 | retry
|
40 | 40 | end
|
41 | 41 |
|
| 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 | + |
42 | 50 | print "\rRunning specs..."
|
43 | 51 |
|
44 | 52 | begin
|
|
58 | 66 | exit 0
|
59 | 67 | end
|
60 | 68 |
|
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) |
88 | 70 | rescue Selenium::WebDriver::Error::NoSuchElementError
|
89 | 71 | puts browser.page_source
|
90 | 72 | rescue Selenium::WebDriver::Error::TimeOutError
|
91 |
| - puts "Timeout, have fun." |
| 73 | + puts "\rTimeout, have fun: #{screenshot(browser)}" |
92 | 74 |
|
93 | 75 | exit 0
|
94 | 76 | ensure
|
|
0 commit comments