aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/system_testing/browser.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/lib/action_dispatch/system_testing/browser.rb')
-rw-r--r--actionpack/lib/action_dispatch/system_testing/browser.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/actionpack/lib/action_dispatch/system_testing/browser.rb b/actionpack/lib/action_dispatch/system_testing/browser.rb
index 9361b165ff..74585062aa 100644
--- a/actionpack/lib/action_dispatch/system_testing/browser.rb
+++ b/actionpack/lib/action_dispatch/system_testing/browser.rb
@@ -29,7 +29,7 @@ module ActionDispatch
end
end
- def driver_option
+ def driver_options
@option ||= case type
when :chrome
Selenium::WebDriver::Chrome::Options.new
@@ -43,13 +43,13 @@ module ActionDispatch
driver_option.args << "--headless"
driver_option.args << "--disable-gpu" if Gem.win_platform?
- driver_option
+ driver_options
end
def headless_firefox_browser_options
- driver_option.args << "-headless"
+ driver_options.args << "-headless"
- driver_option
+ driver_options
end
end
end