From a1dc2f4d592d000442406665c4f6fb9cb653441c Mon Sep 17 00:00:00 2001 From: Espen Antonsen Date: Wed, 8 Jan 2014 01:34:26 +0100 Subject: [PATCH] config.ignore_hidden_elements = true is the default Should be false IMHO though. --- lib/capybara.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/capybara.rb b/lib/capybara.rb index efa254567..7ee73b297 100644 --- a/lib/capybara.rb +++ b/lib/capybara.rb @@ -39,7 +39,7 @@ class << self # [run_server = Boolean] Whether to start a Rack server for the given Rack app (Default: true) # [default_selector = :css/:xpath] Methods which take a selector use the given type by default (Default: CSS) # [default_wait_time = Integer] The number of seconds to wait for asynchronous processes to finish (Default: 2) - # [ignore_hidden_elements = Boolean] Whether to ignore hidden elements on the page (Default: false) + # [ignore_hidden_elements = Boolean] Whether to ignore hidden elements on the page (Default: true) # [automatic_reload = Boolean] Whether to automatically reload elements as Capybara is waiting (Default: true) # [save_and_open_page_path = String] Where to put pages saved through save_and_open_page (Default: Dir.pwd) #