Capybara Integration Test Debugging Tips

@geoffevason Check this out: https://coderwall.com/p/gpro6g/debug-your-capybara-features-with-chrome-web-inspector-easily

# spec/support/debugit.rb

def debugit( *args, &block )
  it( *args, { driver: :poltergeist_debug, inspector: true }, &block )
end

However, I’m not sure what this debug mode really gives you of value. You can see the DOM, but you can also do that from capybara_screenshot.