diff options
author | Robert Speicher <rspeicher@gmail.com> | 2015-04-25 14:20:15 -0400 |
---|---|---|
committer | Robert Speicher <rspeicher@gmail.com> | 2015-04-25 21:33:16 -0400 |
commit | 55831a4d50dc66973c0cfa28f58b5ac1a7c42ab7 (patch) | |
tree | 93ea8e4b1565426c9605fe541a64c0bb5b1d879b /features/support/capybara.rb | |
parent | 3bb2f378168dd18c128ed36ced6ef99bcb271846 (diff) | |
download | gitlab-ce-55831a4d50dc66973c0cfa28f58b5ac1a7c42ab7.tar.gz |
Move Spinach setup for db_cleaner and capybara to their own files
Also adds capybara-screenshot, which will automatically save the page as
html and an image whenever a feature fails. Handy for debugging.
Diffstat (limited to 'features/support/capybara.rb')
-rw-r--r-- | features/support/capybara.rb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/features/support/capybara.rb b/features/support/capybara.rb new file mode 100644 index 00000000000..9a2df74d7be --- /dev/null +++ b/features/support/capybara.rb @@ -0,0 +1,19 @@ +require 'spinach/capybara' +require 'capybara/poltergeist' + +Capybara.javascript_driver = :poltergeist +Capybara.register_driver :poltergeist do |app| + Capybara::Poltergeist::Driver.new(app, js_errors: false, timeout: 90) +end + +Spinach.hooks.on_tag("javascript") do + Capybara.current_driver = Capybara.javascript_driver +end + +Capybara.default_wait_time = 60 +Capybara.ignore_hidden_elements = false + +require 'capybara-screenshot/spinach' + +# Keep only the screenshots generated from the last failing test suite +Capybara::Screenshot.prune_strategy = :keep_last_run |