Increase capybara default wait time to 10s

We worked around this with wait_until, but capybara should solve this more efficiently and hopefully more reliably.
Let's see how this impacts cuke execution time.
pull/1188/head
Michael Frister 12 years ago
parent d26e45a4d6
commit 1bd13f5037
  1. 1
      features/support/env.rb

@ -11,6 +11,7 @@ require 'cucumber/rails'
# prefer to use XPath just remove this line and adjust any selectors in your
# steps to use the XPath syntax.
Capybara.default_selector = :css
Capybara.default_wait_time = 10
Capybara.ignore_hidden_elements = false
# By default, any exception happening in your Rails application will bubble up

Loading…
Cancel
Save