diff options
author | eileencodes <eileencodes@gmail.com> | 2017-04-28 09:01:12 -0700 |
---|---|---|
committer | eileencodes <eileencodes@gmail.com> | 2017-05-14 09:03:46 -0400 |
commit | 46adb59b3474351e95ddc2357e67d169d6ffec51 (patch) | |
tree | 8d06b9e89527b50e03a4be26c9ffe924b3a78885 /guides/source | |
parent | c4c48b0d2a3df706b720a1aaf2986b61bdfb2ec2 (diff) | |
download | rails-46adb59b3474351e95ddc2357e67d169d6ffec51.tar.gz rails-46adb59b3474351e95ddc2357e67d169d6ffec51.tar.bz2 rails-46adb59b3474351e95ddc2357e67d169d6ffec51.zip |
Clarify documentation for system test arguments
Previously this implied that system tests provided other non-headless
drivers when Selenium is the only driver that uses `:using`,
`:screen_size` or `:options` arguments.
This change clarifies that Selenium is the only non-headless driver.
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/testing.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/testing.md b/guides/source/testing.md index e528b2e2a2..c0394f927e 100644 --- a/guides/source/testing.md +++ b/guides/source/testing.md @@ -658,8 +658,8 @@ 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 for non-headless drivers like Selenium), and `:screen_size` to change -the size of the screen for screenshots. +be used by Selenium), and `:screen_size` to change the size of the screen for +screenshots. ```ruby require "test_helper" |