Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStan Hu <stanhu@gmail.com>2017-06-17 08:35:46 +0300
committerStan Hu <stanhu@gmail.com>2017-06-17 08:35:46 +0300
commitbece18aa592f3b93c1a697310dc1ee6d943fde25 (patch)
treeb3b424fee8b0f8ad4f697fefee6a1263570320b9 /spec/support/capybara.rb
parentddbb88010e05f6295dd6e46724d585494c8cc84a (diff)
Make Capybara::Screenshot work with headless Chrome
Diffstat (limited to 'spec/support/capybara.rb')
-rw-r--r--spec/support/capybara.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/spec/support/capybara.rb b/spec/support/capybara.rb
index fbe8ae30565..4a4b037d0b1 100644
--- a/spec/support/capybara.rb
+++ b/spec/support/capybara.rb
@@ -24,6 +24,10 @@ Capybara.ignore_hidden_elements = true
# Keep only the screenshots generated from the last failing test suite
Capybara::Screenshot.prune_strategy = :keep_last_run
+# From https://github.com/mattheworiordan/capybara-screenshot/issues/84#issuecomment-41219326
+Capybara::Screenshot.register_driver(:chrome) do |driver, path|
+ driver.browser.save_screenshot(path)
+end
RSpec.configure do |config|
config.before(:context, :js) do