diff options
author | Eileen M. Uchitelle <eileencodes@users.noreply.github.com> | 2017-12-18 12:24:43 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-18 12:24:43 -0500 |
commit | 0dfe220425d733b9af5082bcdb04a6a8064d3b6a (patch) | |
tree | 514ec193184193c86c6a2153fd587f96a939b846 /actionpack | |
parent | ce2fc70c7bd5d1f57c783d0799d36ee798115513 (diff) | |
parent | 72aca5231f8492b17e0185e4d98b3c7c6d179497 (diff) | |
download | rails-0dfe220425d733b9af5082bcdb04a6a8064d3b6a.tar.gz rails-0dfe220425d733b9af5082bcdb04a6a8064d3b6a.tar.bz2 rails-0dfe220425d733b9af5082bcdb04a6a8064d3b6a.zip |
Merge pull request #31449 from PHedkvist/headless_api_doc
Add headless browser support in api docs [ci skip]
Diffstat (limited to 'actionpack')
-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 |