diff options
author | Eileen M. Uchitelle <eileencodes@users.noreply.github.com> | 2017-06-02 13:30:59 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-02 13:30:59 -0400 |
commit | e935a6c0be7d7732d2459e84c77c40bd4932b42c (patch) | |
tree | ec562b86e5f56af3d2936b8c47cc75e70b664496 /guides | |
parent | f7388635f246b97a1aa0be54579339c6659fb865 (diff) | |
parent | 9063007538ffdfb03d35c7bb75218dfd2ddfc56c (diff) | |
download | rails-e935a6c0be7d7732d2459e84c77c40bd4932b42c.tar.gz rails-e935a6c0be7d7732d2459e84c77c40bd4932b42c.tar.bz2 rails-e935a6c0be7d7732d2459e84c77c40bd4932b42c.zip |
Merge pull request #29315 from mariochavez/driven_by_support_headless_drivers
SystemTesting::Driver can register capybara-webkit and poltergeist
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/testing.md | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/guides/source/testing.md b/guides/source/testing.md index e4fc8c7b6e..21ceeced1d 100644 --- a/guides/source/testing.md +++ b/guides/source/testing.md @@ -660,8 +660,9 @@ end The driver name is a required argument for `driven_by`. The optional arguments that can be passed to `driven_by` are `:using` for the browser (this will only -be used by Selenium), and `:screen_size` to change the size of the screen for -screenshots. +be used by Selenium), `:screen_size` to change the size of the screen for +screenshots, and `:options` which can be used to set options supported by the +driver. ```ruby require "test_helper" |