summaryrefslogtreecommitdiff
path: root/test/support
diff options
context:
space:
mode:
authorAzul <azul@leap.se>2014-04-30 16:35:39 +0200
committerAzul <azul@leap.se>2014-05-06 09:36:28 +0200
commit3952a7dfcd13993bd51ac7dc07cb3a01b4658e25 (patch)
tree5336a0921ff84b6b8c0957c9907ffe20ba2f9ba6 /test/support
parent3afb745d961c5b34d980e7e005c4e7bf81a880c4 (diff)
hide srp forms when no js is available
Hiding them using two mechanisms in case one fails: .hidden class - bootstrap hides them then style='display:none' - so they are hidden even if css load fails
Diffstat (limited to 'test/support')
-rw-r--r--test/support/browser_integration_test.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/support/browser_integration_test.rb b/test/support/browser_integration_test.rb
index 2885c3a..9cae8cb 100644
--- a/test/support/browser_integration_test.rb
+++ b/test/support/browser_integration_test.rb
@@ -60,7 +60,6 @@ class BrowserIntegrationTest < ActionDispatch::IntegrationTest
end
def save_state
- page.save_screenshot screenshot_path
File.open(logfile_path, 'w') do |test_log|
test_log.puts self.class.name
test_log.puts "========================="
@@ -76,6 +75,9 @@ class BrowserIntegrationTest < ActionDispatch::IntegrationTest
test_log.puts "------------------------"
test_log.puts `tail log/test.log -n 200`
end
+ page.save_screenshot screenshot_path
+ # some drivers do not support screenshots
+ rescue Capybara::NotSupportedByDriverError
end
end