diff options
author | Pierre Hedkvist <pierre.hedkvist@gmail.com> | 2017-12-14 16:55:22 +0000 |
---|---|---|
committer | Pierre Hedkvist <pierre.hedkvist@gmail.com> | 2017-12-18 16:51:22 +0000 |
commit | 72aca5231f8492b17e0185e4d98b3c7c6d179497 (patch) | |
tree | c015fe260ee20d40c0113ded09bcb93685883cb7 /actionpack/lib/action_dispatch | |
parent | 659c516bef2781cc66865fc78ed5dce682566d26 (diff) | |
download | rails-72aca5231f8492b17e0185e4d98b3c7c6d179497.tar.gz rails-72aca5231f8492b17e0185e4d98b3c7c6d179497.tar.bz2 rails-72aca5231f8492b17e0185e4d98b3c7c6d179497.zip |
Add headless browser support in api docs [ci skip]
Diffstat (limited to 'actionpack/lib/action_dispatch')
-rw-r--r-- | actionpack/lib/action_dispatch/system_test_case.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/actionpack/lib/action_dispatch/system_test_case.rb b/actionpack/lib/action_dispatch/system_test_case.rb index 99d0c06751..393141535b 100644 --- a/actionpack/lib/action_dispatch/system_test_case.rb +++ b/actionpack/lib/action_dispatch/system_test_case.rb @@ -69,6 +69,9 @@ module ActionDispatch # size of the browser screen. These two options are not applicable for # headless drivers and will be silently ignored if passed. # + # Headless browsers such as headless Chrome and headless Firefox are also supported. + # You can use these browsers by setting the +:using+ argument to +:headless_chrome+ or +:headless_firefox+. + # # To use a headless driver, like Poltergeist, update your Gemfile to use # Poltergeist instead of Selenium and then declare the driver name in the # +application_system_test_case.rb+ file. In this case, you would leave out |