Commit 833bc28ae1b08ab683771b6ee8a2613828a828ea
1 parent
9264b501
Exists in
colab
and in
4 other branches
Using Capybara#default_max_wait_time instead of the deprecated Capybara#default_wait_time
Signed off by: Heitor Reis <marcheing@gmail.com>
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
features/support/env.rb
... | ... | @@ -24,7 +24,7 @@ require 'cucumber/rails' |
24 | 24 | require 'capybara/poltergeist' |
25 | 25 | #Capybara.default_driver = :poltergeist |
26 | 26 | Capybara.javascript_driver = :poltergeist |
27 | -Capybara.default_wait_time = 20 # default is 2 seconds | |
27 | +Capybara.default_max_wait_time = 20 # default is 2 seconds | |
28 | 28 | |
29 | 29 | #require 'kalibro_gem/kalibro_cucumber_helpers/hooks' |
30 | 30 | ... | ... |