File tree Expand file tree Collapse file tree 1 file changed +12
-5
lines changed Expand file tree Collapse file tree 1 file changed +12
-5
lines changed Original file line number Diff line number Diff line change @@ -2,11 +2,18 @@ Feature: System spec
2
2
3
3
System specs are RSpec's wrapper around Rails' own
4
4
[system tests](http://guides.rubyonrails.org/testing.html#system-testing).
5
- We encourage you to familiarize yourself with their documentation.
6
-
7
- RSpec **does not** use your `ApplicationSystemTestCase` helper. Instead it uses
8
- the default `driven_by(:selenium)` from Rails. If you want to override this
9
- behaviour you can call `driven_by` manually in a test.
5
+
6
+ System tests allow you to test user interactions with your application,
7
+ running tests in either a real or a headless browser. System tests use
8
+ Capybara under the hood.
9
+
10
+ By default, system tests are run with the Selenium driver, using the Chrome
11
+ browser, and a screen size of 1400x1400. The next section explains how to
12
+ change the default settings.
13
+
14
+ RSpec **does not** use your `ApplicationSystemTestCase` helper. Instead it
15
+ uses the default `driven_by(:selenium)` from Rails. If you want to override
16
+ this behaviour you can call `driven_by` manually in a test.
10
17
11
18
12
19
@system_test
You can’t perform that action at this time.
0 commit comments