spreewald 2.4.2 → 2.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (52) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +30 -3
  3. data/README.md +87 -15
  4. data/Rakefile +10 -5
  5. data/examples/paths.rb +36 -0
  6. data/examples/selectors.rb +28 -0
  7. data/lib/spreewald/all_steps.rb +4 -1
  8. data/lib/spreewald/browser_tab_steps.rb +91 -0
  9. data/lib/spreewald/development_steps.rb +1 -1
  10. data/lib/spreewald/email_steps.rb +3 -1
  11. data/lib/spreewald/session_steps.rb +18 -0
  12. data/lib/spreewald/time_steps.rb +102 -0
  13. data/lib/spreewald/timecop_steps.rb +6 -76
  14. data/lib/spreewald/web_steps.rb +25 -25
  15. data/lib/spreewald_support/driver_info.rb +8 -0
  16. data/lib/spreewald_support/tolerance_for_selenium_sync_issues.rb +9 -3
  17. data/lib/spreewald_support/version.rb +1 -1
  18. data/lib/spreewald_support/web_steps_helpers.rb +17 -0
  19. data/support/step_definition.rb +1 -1
  20. data/support/step_definition_file.rb +2 -0
  21. data/tests/rails-3_capybara-1/Gemfile +2 -1
  22. data/tests/rails-3_capybara-1/Gemfile.lock +3 -1
  23. data/tests/rails-3_capybara-2/Gemfile +2 -1
  24. data/tests/rails-3_capybara-2/Gemfile.lock +3 -1
  25. data/tests/rails-4_capybara-3/Gemfile.lock +1 -1
  26. data/tests/rails-4_capybara-3/features/browser_tab_steps.feature +1 -0
  27. data/tests/rails-4_capybara-3/features/session_steps.feature +1 -0
  28. data/tests/rails-4_capybara-3/features/time_steps.feature +1 -0
  29. data/tests/rails-6_capybara-3/.ruby-version +1 -1
  30. data/tests/rails-6_capybara-3/Gemfile +1 -1
  31. data/tests/rails-6_capybara-3/Gemfile.lock +1 -1
  32. data/tests/rails-6_capybara-3/features/browser_tab_steps.feature +1 -0
  33. data/tests/rails-6_capybara-3/features/session_steps.feature +1 -0
  34. data/tests/rails-6_capybara-3/features/time_steps.feature +1 -0
  35. data/tests/shared/app/controllers/downloads_controller.rb +1 -1
  36. data/tests/shared/app/controllers/static_pages_controller.rb +9 -0
  37. data/tests/shared/app/views/forms/disabled_elements.html.haml +18 -0
  38. data/tests/shared/app/views/mailer/html_email_with_links.haml +2 -0
  39. data/tests/shared/app/views/mailer/text_email_with_links.text.erb +1 -0
  40. data/tests/shared/app/views/static_pages/session_1.haml +1 -0
  41. data/tests/shared/app/views/static_pages/session_2.haml +1 -0
  42. data/tests/shared/app/views/static_pages/session_3.haml +1 -0
  43. data/tests/shared/app/views/static_pages/tab_1.haml +3 -0
  44. data/tests/shared/app/views/static_pages/tab_2.haml +2 -0
  45. data/tests/shared/app/views/static_pages/tab_3.haml +1 -0
  46. data/tests/shared/app/views/static_pages/time.html.haml +2 -0
  47. data/tests/shared/config/routes.rb +9 -2
  48. data/tests/shared/features/shared/browser_tab_steps.feature +103 -0
  49. data/tests/shared/features/shared/session_steps.feature +29 -0
  50. data/tests/shared/features/shared/time_steps.feature +31 -0
  51. data/tests/shared/features/shared/web_steps.feature +8 -2
  52. metadata +37 -2
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ../..
3
3
  specs:
4
- spreewald (2.4.2)
4
+ spreewald (2.8.0)
5
5
  cucumber
6
6
  cucumber_priority (>= 0.3.0)
7
7
  rspec (>= 2.13.0)
@@ -150,6 +150,7 @@ GEM
150
150
  sqlite3 (1.3.8)
151
151
  thor (0.18.1)
152
152
  tilt (1.4.1)
153
+ timecop (0.9.1)
153
154
  treetop (1.4.12)
154
155
  polyglot
155
156
  polyglot (>= 0.3.1)
@@ -175,6 +176,7 @@ DEPENDENCIES
175
176
  selenium-webdriver
176
177
  spreewald!
177
178
  sqlite3
179
+ timecop
178
180
 
179
181
  BUNDLED WITH
180
182
  1.17.3
@@ -17,4 +17,5 @@ group :test do
17
17
  gem 'selenium-webdriver'
18
18
  gem 'rspec-rails'
19
19
  gem 'spreewald', :path => '../..'
20
- end
20
+ gem 'timecop'
21
+ end
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ../..
3
3
  specs:
4
- spreewald (2.4.2)
4
+ spreewald (2.8.0)
5
5
  cucumber
6
6
  cucumber_priority (>= 0.3.0)
7
7
  rspec (>= 2.13.0)
@@ -158,6 +158,7 @@ GEM
158
158
  sqlite3 (1.3.8)
159
159
  thor (0.18.1)
160
160
  tilt (1.4.1)
161
+ timecop (0.9.1)
161
162
  treetop (1.4.12)
162
163
  polyglot
163
164
  polyglot (>= 0.3.1)
@@ -184,6 +185,7 @@ DEPENDENCIES
184
185
  selenium-webdriver
185
186
  spreewald!
186
187
  sqlite3
188
+ timecop
187
189
 
188
190
  BUNDLED WITH
189
191
  1.17.3
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ../..
3
3
  specs:
4
- spreewald (2.4.1)
4
+ spreewald (2.8.0)
5
5
  cucumber
6
6
  cucumber_priority (>= 0.3.0)
7
7
  rspec (>= 2.13.0)
@@ -0,0 +1 @@
1
+ ../../shared/features/shared/browser_tab_steps.feature
@@ -0,0 +1 @@
1
+ ../../shared/features/shared/session_steps.feature
@@ -0,0 +1 @@
1
+ ../../shared/features/shared/time_steps.feature
@@ -1 +1 @@
1
- 2.7.1
1
+ 2.6.6
@@ -22,4 +22,4 @@ group :test do
22
22
  gem 'selenium-webdriver'
23
23
  gem 'rspec-rails'
24
24
  gem 'spreewald', :path => '../..'
25
- end
25
+ end
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ../..
3
3
  specs:
4
- spreewald (2.4.1)
4
+ spreewald (2.8.0)
5
5
  cucumber
6
6
  cucumber_priority (>= 0.3.0)
7
7
  rspec (>= 2.13.0)
@@ -0,0 +1 @@
1
+ ../../shared/features/shared/browser_tab_steps.feature
@@ -0,0 +1 @@
1
+ ../../shared/features/shared/session_steps.feature
@@ -0,0 +1 @@
1
+ ../../shared/features/shared/time_steps.feature
@@ -1,7 +1,7 @@
1
1
  class DownloadsController < ApplicationController
2
2
 
3
3
  def spreadsheet
4
- send_data File.read("#{Rails.root}/public/fixture_files/spreadsheet.ods"), filename: 'test.ods'
4
+ send_data File.read("#{Rails.root}/public/fixture_files/spreadsheet.ods"), filename: 'test - example (today).ods'
5
5
  end
6
6
 
7
7
  end
@@ -21,6 +21,15 @@ class StaticPagesController < ApplicationController
21
21
  def see_element
22
22
  end
23
23
 
24
+ def tab_1
25
+ end
26
+
27
+ def tab_2
28
+ end
29
+
30
+ def tab_3
31
+ end
32
+
24
33
  def visibility
25
34
  end
26
35
 
@@ -51,3 +51,21 @@
51
51
 
52
52
  = label_tag 'enabled_field_2', 'Enabled field #2'
53
53
  = text_field_tag 'enabled_field_2', 'value'
54
+
55
+ -# radio buttons
56
+ = form_tag do
57
+ - selected = false
58
+ = label_tag 'disabled_radio_1', 'Disabled radio button #1'
59
+ = radio_button_tag 'disabled_radio', '1', selected, disabled: true
60
+
61
+ = label_tag 'disabled_radio_2', 'Disabled radio button #2'
62
+ = radio_button_tag 'disabled_radio', '2', selected, disabled: ''
63
+
64
+ = label_tag 'disabled_radio_3', 'Disabled radio button #3'
65
+ = radio_button_tag 'disabled_radio', '3', selected, disabled: 'aaa'
66
+
67
+ = label_tag 'enabled_radio_1', 'Enabled radio button #1'
68
+ = radio_button_tag 'enabled_radio', '1', selected, disabled: false
69
+
70
+ = label_tag 'enabled_radio_2', 'Enabled radio button #2'
71
+ = radio_button_tag 'enabled_radio', '2', selected
@@ -3,4 +3,6 @@
3
3
  %body
4
4
  %img(src="https://www.example.com/image.png")
5
5
  %a(href="https://www.example.com/static_pages/link_target") Click me
6
+ %a(href="mailto:user@example.com") mailto links should be ignored
7
+ %a(href="ftp://ftp.example.com/") FTP links are also ignored
6
8
  %a(href="https://www.example.com/static_pages/second_link_target") Other link
@@ -1,6 +1,7 @@
1
1
  Hello!
2
2
 
3
3
  First link: https://www.example.com/static_pages/link_target
4
+ Ignored link: ftp://ftp.example.com/
4
5
  Second link: https://www.example.com/static_pages/second_link_target
5
6
 
6
7
  Bye!
@@ -0,0 +1 @@
1
+ %h1 First capybara session
@@ -0,0 +1 @@
1
+ %h1 Second capybara session
@@ -0,0 +1 @@
1
+ %h1 Third capybara session
@@ -0,0 +1,3 @@
1
+ %h1 First browser tab
2
+ %a(href='/static_pages/tab_2' target='_blank') Click to open tab 2
3
+ %a(href='/static_pages/tab_2') Follow link WITHOUT opening a new tab
@@ -0,0 +1,2 @@
1
+ %h1 Second browser tab
2
+ %a(href='/static_pages/tab_3' target='_blank') Click to open tab 3
@@ -0,0 +1 @@
1
+ %h1 Third browser tab
@@ -0,0 +1,2 @@
1
+ = "The current date is #{Time.current.strftime("%Y-%m-%d")}."
2
+ = "The current time is #{Time.current.strftime("%H:%M")}."
@@ -18,15 +18,22 @@ Rails.application.routes.draw do
18
18
 
19
19
  get '/static_pages/click_on', to: 'static_pages#click_on'
20
20
  get '/static_pages/home', to: 'static_pages#home'
21
+ get '/static_pages/link_target', to: 'static_pages#link_target'
21
22
  get '/static_pages/link_to_home', to: 'static_pages#link_to_home'
22
23
  get '/static_pages/links', to: 'static_pages#links'
23
24
  get '/static_pages/numbers', to: 'static_pages#numbers'
24
25
  get '/static_pages/overridden', to: 'static_pages#overridden'
26
+ get '/static_pages/second_link_target', to: 'static_pages#second_link_target'
25
27
  get '/static_pages/see_element', to: 'static_pages#see_element'
28
+ get '/static_pages/session_1', to: 'static_pages#session_1'
29
+ get '/static_pages/session_2', to: 'static_pages#session_2'
30
+ get '/static_pages/session_3', to: 'static_pages#session_3'
31
+ get '/static_pages/tab_1', to: 'static_pages#tab_1'
32
+ get '/static_pages/tab_2', to: 'static_pages#tab_2'
33
+ get '/static_pages/tab_3', to: 'static_pages#tab_3'
34
+ get '/static_pages/time', to: 'static_pages#time'
26
35
  get '/static_pages/visibility', to: 'static_pages#visibility'
27
36
  get '/static_pages/within', to: 'static_pages#within'
28
- get '/static_pages/link_target', to: 'static_pages#link_target'
29
- get '/static_pages/second_link_target', to: 'static_pages#second_link_target'
30
37
 
31
38
  get '/tables/table1', to: 'tables#table1'
32
39
  get '/tables/table_with_weird_spaces', to: 'tables#table_with_weird_spaces'
@@ -0,0 +1,103 @@
1
+ @javascript
2
+ Feature: Browser tab steps
3
+
4
+ Background: Access some content in a first tab
5
+ Given I go to "/static_pages/tab_1"
6
+ Then I should see "First browser tab"
7
+ And there should be 1 browser tab
8
+
9
+
10
+ Scenario: I open (.+?) in a new browser tab
11
+ When I open "/static_pages/tab_2" in a new browser tab
12
+ Then I should see "Second browser tab"
13
+ And there should be 2 browser tabs
14
+
15
+ When I open "/static_pages/tab_3" in a new browser tab
16
+ Then I should see "Third browser tab"
17
+ And there should be 3 browser tabs
18
+
19
+
20
+ Scenario: I close the browser tab
21
+ When I open "/static_pages/tab_2" in a new browser tab
22
+ And I open "/static_pages/tab_3" in a new browser tab
23
+ Then I should see "Third browser tab"
24
+ And there should be 3 browser tabs
25
+
26
+ When I close the browser tab
27
+ Then there should be 2 browser tabs
28
+ And I should see "First browser tab"
29
+
30
+ When I close the browser tab
31
+ Then there should be 1 browser tab
32
+ And I should see "Second browser tab"
33
+
34
+
35
+ Scenario: I switch to the new(?:ly opened)? browser tab
36
+ When I follow "Click to open tab 2"
37
+ Then I should see "First browser tab"
38
+
39
+ When I switch to the newly opened browser tab
40
+ Then I should see "Second browser tab"
41
+
42
+ When I follow "Click to open tab 3"
43
+ And I switch to the new browser tab
44
+ Then I should see "Third browser tab"
45
+
46
+
47
+ Scenario: I switch(?: back)? to the previous browser tab
48
+ When I open "/static_pages/tab_2" in a new browser tab
49
+ Then I should see "Second browser tab"
50
+ And there should be 2 browser tabs
51
+
52
+ When I switch back to the previous browser tab
53
+ Then I should see "First browser tab"
54
+ And there should be 2 browser tabs
55
+
56
+ And I open "/static_pages/tab_3" in a new browser tab
57
+ Then I should see "Third browser tab"
58
+ And there should be 3 browser tabs
59
+
60
+ When I switch to the previous browser tab
61
+ Then I should see "Second browser tab"
62
+ And there should be 3 browser tabs
63
+
64
+
65
+ Scenario: I should have opened a new browser tab
66
+ This step must be preceded by "I may open a new browser tab"
67
+
68
+ When I may open a new browser tab
69
+ And I follow "Click to open tab 2"
70
+ Then I should have opened a new browser tab
71
+ And there should be 2 browser tabs
72
+
73
+
74
+ Scenario: I should not have opened a new browser tab
75
+ This step must be preceded by "I may open a new browser tab"
76
+
77
+ When I may open a new browser tab
78
+ And I follow "Follow link WITHOUT opening a new tab"
79
+ Then I should not have opened a new browser tab
80
+ And there should be 1 browser tabs
81
+
82
+
83
+ Scenario: there should be (\d+) browser tabs?
84
+ Given there should be 1 browser tab
85
+ When I open "/static_pages/tab_2" in a new browser tab
86
+ Then there should be 2 browser tabs
87
+
88
+ When I open "/static_pages/tab_3" in a new browser tab
89
+ Then there should be 3 browser tabs
90
+
91
+ When I open "/static_pages/tab_3" in a new browser tab
92
+ Then there should be 4 browser tabs
93
+
94
+
95
+ Scenario: there should be at least (\d+) browser tabs?
96
+ Given there should be at least 1 browser tab
97
+ When I open "/static_pages/tab_2" in a new browser tab
98
+ Then there should be at least 2 browser tabs
99
+
100
+ When I open "/static_pages/tab_3" in a new browser tab
101
+ Then there should be at least 1 browser tabs
102
+ Then there should be at least 2 browser tabs
103
+ Then there should be at least 3 browser tabs
@@ -0,0 +1,29 @@
1
+ Feature: Browser session steps
2
+
3
+ Scenario: Browser sessions do not interfere with each other
4
+ Given I go to "/static_pages/session_1"
5
+ Then I should see "First capybara session"
6
+
7
+ When I go to "/static_pages/session_2" in the browser session "second"
8
+ And I go to "/static_pages/session_3" in the browser session "third"
9
+
10
+ # Different pages can be accessed on different browser sessions
11
+ Then I should see "Second capybara session" in the browser session "second"
12
+ And I should see "Third capybara session" in the browser session "third"
13
+
14
+ # The default session is not affected by actions in other sessions
15
+ But I should not see "Second capybara session"
16
+
17
+ # Other sessions are not affected by the main session
18
+ And I should not see "First capybara session" in the browser session "second"
19
+
20
+ # Other sessions are not affected by each other
21
+ And I should not see "Third capybara session" in the browser session "second"
22
+
23
+
24
+ Scenario: Steps with table arguments work in different browser sessions
25
+ When I go to "/tables/table1" in the browser session "tables"
26
+ Then I should see a table with the following rows in the browser session "tables":
27
+ | 1-1 | 1-2 | 1-3 |
28
+ | 2-1 | 2-2 | 2-3 |
29
+ | 3-1 | 3-2 | 3-3 |
@@ -0,0 +1,31 @@
1
+ # The time steps use the timecop gem or ActiveSupport 4.1, depending on what is
2
+ # available.
3
+ # In order to test both implementations, the rails 3 test projects (Capybara 1 & 2)
4
+ # use timecop to run this feature, while the rails 4 & 6 test projects (Capybara 6)
5
+ # use ActiveSupport for this feature.
6
+
7
+ Feature: Time steps
8
+ Scenario: /^the (?:date|time) is "?(\d{4}-\d{2}-\d{2}(?: \d{1,2}:\d{2})?)"?$/
9
+ Given the time is "2020-02-03 02:12"
10
+ When I go to "/static_pages/time"
11
+ Then I should see "The current date is 2020-02-03."
12
+ And I should see "The current time is 02:12."
13
+
14
+ Given the time is 23:24
15
+ When I go to "/static_pages/time"
16
+ Then I should see "The current time is 23:24."
17
+
18
+ Scenario: Set just the date
19
+ Given the date is "2020-02-03"
20
+ When I go to "/static_pages/time"
21
+ Then I should see "The current date is 2020-02-03."
22
+
23
+ Scenario: it is (\d+|an?|some|a few) (seconds?|minutes?|hours?|days?|weeks?|months?|years?) (later|earlier)
24
+ Given the time is "23:00"
25
+ When it is 24 minutes later
26
+ And I go to "/static_pages/time"
27
+ Then I should see "The current time is 23:24."
28
+
29
+ When it is an hour earlier
30
+ And I go to "/static_pages/time"
31
+ Then I should see "The current time is 22:24"
@@ -85,7 +85,7 @@ Feature: Web steps
85
85
  Scenario: /^I go back$/
86
86
  Given I go to "/static_pages/link_to_home"
87
87
  And I follow "Home"
88
-
88
+
89
89
  When I go back
90
90
  Then I should be on "/static_pages/link_to_home"
91
91
 
@@ -290,7 +290,7 @@ Feature: Web steps
290
290
 
291
291
  Scenario: /^I should get a download with filename "([^\"]*)"$/
292
292
  When I go to "/downloads/spreadsheet"
293
- Then I should get a download with filename "test.ods"
293
+ Then I should get a download with filename "test - example (today).ods"
294
294
 
295
295
 
296
296
  Scenario: /^I should( not)? see a link labeled "([^"]*)"$/
@@ -341,6 +341,12 @@ Feature: Web steps
341
341
  But the "Enabled field #1" field should not be disabled
342
342
  And the "Enabled field #2" field should not be disabled
343
343
 
344
+ # radio buttons
345
+ And the "Disabled radio button #1" radio button should be disabled
346
+ And the "Disabled radio button #2" radio button should be disabled
347
+ And the "Disabled radio button #3" radio button should be disabled
348
+ But the "Enabled radio button #1" radio button should not be disabled
349
+ And the "Enabled radio button #2" radio button should not be disabled
344
350
 
345
351
  Scenario: /^the window should be titled "([^"]*)"$/
346
352
  When I go to "/static_pages/home"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: spreewald
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.4.2
4
+ version: 2.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tobias Kraze
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-04-22 00:00:00.000000000 Z
11
+ date: 2020-09-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cucumber
@@ -154,10 +154,13 @@ files:
154
154
  - features/support/aruba.rb
155
155
  - lib/spreewald.rb
156
156
  - lib/spreewald/all_steps.rb
157
+ - lib/spreewald/browser_tab_steps.rb
157
158
  - lib/spreewald/development_steps.rb
158
159
  - lib/spreewald/email_steps.rb
159
160
  - lib/spreewald/file_attachment_steps.rb
161
+ - lib/spreewald/session_steps.rb
160
162
  - lib/spreewald/table_steps.rb
163
+ - lib/spreewald/time_steps.rb
161
164
  - lib/spreewald/timecop_steps.rb
162
165
  - lib/spreewald/web_steps.rb
163
166
  - lib/spreewald_support/comparison.rb
@@ -248,9 +251,11 @@ files:
248
251
  - tests/rails-4_capybara-3/config/routes.rb
249
252
  - tests/rails-4_capybara-3/config/secrets.yml
250
253
  - tests/rails-4_capybara-3/db
254
+ - tests/rails-4_capybara-3/features/browser_tab_steps.feature
251
255
  - tests/rails-4_capybara-3/features/development_steps.feature
252
256
  - tests/rails-4_capybara-3/features/email_steps.feature
253
257
  - tests/rails-4_capybara-3/features/overriding.feature
258
+ - tests/rails-4_capybara-3/features/session_steps.feature
254
259
  - tests/rails-4_capybara-3/features/step_definitions/overriding_steps.rb
255
260
  - tests/rails-4_capybara-3/features/step_definitions/test_steps.rb
256
261
  - tests/rails-4_capybara-3/features/support/env.rb
@@ -258,6 +263,7 @@ files:
258
263
  - tests/rails-4_capybara-3/features/support/selectors.rb
259
264
  - tests/rails-4_capybara-3/features/support/selenium.rb
260
265
  - tests/rails-4_capybara-3/features/table_steps.feature
266
+ - tests/rails-4_capybara-3/features/time_steps.feature
261
267
  - tests/rails-4_capybara-3/features/web_steps.feature
262
268
  - tests/rails-4_capybara-3/lib/tasks/cucumber.rake
263
269
  - tests/rails-4_capybara-3/log/.keep
@@ -300,9 +306,11 @@ files:
300
306
  - tests/rails-6_capybara-3/config/locales/en.yml
301
307
  - tests/rails-6_capybara-3/config/routes.rb
302
308
  - tests/rails-6_capybara-3/db
309
+ - tests/rails-6_capybara-3/features/browser_tab_steps.feature
303
310
  - tests/rails-6_capybara-3/features/development_steps.feature
304
311
  - tests/rails-6_capybara-3/features/email_steps.feature
305
312
  - tests/rails-6_capybara-3/features/overriding.feature
313
+ - tests/rails-6_capybara-3/features/session_steps.feature
306
314
  - tests/rails-6_capybara-3/features/step_definitions/.gitkeep
307
315
  - tests/rails-6_capybara-3/features/step_definitions/overriding_steps.rb
308
316
  - tests/rails-6_capybara-3/features/step_definitions/test_steps.rb
@@ -311,6 +319,7 @@ files:
311
319
  - tests/rails-6_capybara-3/features/support/selectors.rb
312
320
  - tests/rails-6_capybara-3/features/support/selenium.rb
313
321
  - tests/rails-6_capybara-3/features/table_steps.feature
322
+ - tests/rails-6_capybara-3/features/time_steps.feature
314
323
  - tests/rails-6_capybara-3/features/web_steps.feature
315
324
  - tests/rails-6_capybara-3/lib/tasks/.keep
316
325
  - tests/rails-6_capybara-3/lib/tasks/cucumber.rake
@@ -349,6 +358,13 @@ files:
349
358
  - tests/shared/app/views/static_pages/numbers.html.haml
350
359
  - tests/shared/app/views/static_pages/overridden.html.haml
351
360
  - tests/shared/app/views/static_pages/see_element.html.haml
361
+ - tests/shared/app/views/static_pages/session_1.haml
362
+ - tests/shared/app/views/static_pages/session_2.haml
363
+ - tests/shared/app/views/static_pages/session_3.haml
364
+ - tests/shared/app/views/static_pages/tab_1.haml
365
+ - tests/shared/app/views/static_pages/tab_2.haml
366
+ - tests/shared/app/views/static_pages/tab_3.haml
367
+ - tests/shared/app/views/static_pages/time.html.haml
352
368
  - tests/shared/app/views/static_pages/visibility.html.haml
353
369
  - tests/shared/app/views/static_pages/within.html.haml
354
370
  - tests/shared/app/views/tables/table1.html.haml
@@ -359,12 +375,15 @@ files:
359
375
  - tests/shared/db/development.sqlite3
360
376
  - tests/shared/db/migrate/.keep
361
377
  - tests/shared/db/schema.rb
378
+ - tests/shared/features/shared/browser_tab_steps.feature
362
379
  - tests/shared/features/shared/development_steps.feature
363
380
  - tests/shared/features/shared/email_steps.feature
364
381
  - tests/shared/features/shared/overriding.feature
382
+ - tests/shared/features/shared/session_steps.feature
365
383
  - tests/shared/features/shared/step_definitions/overriding_steps.rb
366
384
  - tests/shared/features/shared/step_definitions/test_steps.rb
367
385
  - tests/shared/features/shared/table_steps.feature
386
+ - tests/shared/features/shared/time_steps.feature
368
387
  - tests/shared/features/shared/web_steps.feature
369
388
  - tests/shared/features/support/paths.rb
370
389
  - tests/shared/features/support/selectors.rb
@@ -463,9 +482,11 @@ test_files:
463
482
  - tests/rails-4_capybara-3/config/routes.rb
464
483
  - tests/rails-4_capybara-3/config/secrets.yml
465
484
  - tests/rails-4_capybara-3/db
485
+ - tests/rails-4_capybara-3/features/browser_tab_steps.feature
466
486
  - tests/rails-4_capybara-3/features/development_steps.feature
467
487
  - tests/rails-4_capybara-3/features/email_steps.feature
468
488
  - tests/rails-4_capybara-3/features/overriding.feature
489
+ - tests/rails-4_capybara-3/features/session_steps.feature
469
490
  - tests/rails-4_capybara-3/features/step_definitions/overriding_steps.rb
470
491
  - tests/rails-4_capybara-3/features/step_definitions/test_steps.rb
471
492
  - tests/rails-4_capybara-3/features/support/env.rb
@@ -473,6 +494,7 @@ test_files:
473
494
  - tests/rails-4_capybara-3/features/support/selectors.rb
474
495
  - tests/rails-4_capybara-3/features/support/selenium.rb
475
496
  - tests/rails-4_capybara-3/features/table_steps.feature
497
+ - tests/rails-4_capybara-3/features/time_steps.feature
476
498
  - tests/rails-4_capybara-3/features/web_steps.feature
477
499
  - tests/rails-4_capybara-3/lib/tasks/cucumber.rake
478
500
  - tests/rails-4_capybara-3/log/.keep
@@ -515,9 +537,11 @@ test_files:
515
537
  - tests/rails-6_capybara-3/config/locales/en.yml
516
538
  - tests/rails-6_capybara-3/config/routes.rb
517
539
  - tests/rails-6_capybara-3/db
540
+ - tests/rails-6_capybara-3/features/browser_tab_steps.feature
518
541
  - tests/rails-6_capybara-3/features/development_steps.feature
519
542
  - tests/rails-6_capybara-3/features/email_steps.feature
520
543
  - tests/rails-6_capybara-3/features/overriding.feature
544
+ - tests/rails-6_capybara-3/features/session_steps.feature
521
545
  - tests/rails-6_capybara-3/features/step_definitions/.gitkeep
522
546
  - tests/rails-6_capybara-3/features/step_definitions/overriding_steps.rb
523
547
  - tests/rails-6_capybara-3/features/step_definitions/test_steps.rb
@@ -526,6 +550,7 @@ test_files:
526
550
  - tests/rails-6_capybara-3/features/support/selectors.rb
527
551
  - tests/rails-6_capybara-3/features/support/selenium.rb
528
552
  - tests/rails-6_capybara-3/features/table_steps.feature
553
+ - tests/rails-6_capybara-3/features/time_steps.feature
529
554
  - tests/rails-6_capybara-3/features/web_steps.feature
530
555
  - tests/rails-6_capybara-3/lib/tasks/.keep
531
556
  - tests/rails-6_capybara-3/lib/tasks/cucumber.rake
@@ -564,6 +589,13 @@ test_files:
564
589
  - tests/shared/app/views/static_pages/numbers.html.haml
565
590
  - tests/shared/app/views/static_pages/overridden.html.haml
566
591
  - tests/shared/app/views/static_pages/see_element.html.haml
592
+ - tests/shared/app/views/static_pages/session_1.haml
593
+ - tests/shared/app/views/static_pages/session_2.haml
594
+ - tests/shared/app/views/static_pages/session_3.haml
595
+ - tests/shared/app/views/static_pages/tab_1.haml
596
+ - tests/shared/app/views/static_pages/tab_2.haml
597
+ - tests/shared/app/views/static_pages/tab_3.haml
598
+ - tests/shared/app/views/static_pages/time.html.haml
567
599
  - tests/shared/app/views/static_pages/visibility.html.haml
568
600
  - tests/shared/app/views/static_pages/within.html.haml
569
601
  - tests/shared/app/views/tables/table1.html.haml
@@ -574,12 +606,15 @@ test_files:
574
606
  - tests/shared/db/development.sqlite3
575
607
  - tests/shared/db/migrate/.keep
576
608
  - tests/shared/db/schema.rb
609
+ - tests/shared/features/shared/browser_tab_steps.feature
577
610
  - tests/shared/features/shared/development_steps.feature
578
611
  - tests/shared/features/shared/email_steps.feature
579
612
  - tests/shared/features/shared/overriding.feature
613
+ - tests/shared/features/shared/session_steps.feature
580
614
  - tests/shared/features/shared/step_definitions/overriding_steps.rb
581
615
  - tests/shared/features/shared/step_definitions/test_steps.rb
582
616
  - tests/shared/features/shared/table_steps.feature
617
+ - tests/shared/features/shared/time_steps.feature
583
618
  - tests/shared/features/shared/web_steps.feature
584
619
  - tests/shared/features/support/paths.rb
585
620
  - tests/shared/features/support/selectors.rb