spreewald 2.3.0 → 2.7.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (153) hide show
  1. checksums.yaml +5 -5
  2. data/.gitignore +1 -1
  3. data/.travis.yml +14 -15
  4. data/CHANGELOG.md +33 -4
  5. data/Gemfile +1 -2
  6. data/Gemfile.lock +1 -16
  7. data/Gemfile.ruby266 +9 -0
  8. data/Gemfile.ruby266.lock +65 -0
  9. data/README.md +86 -12
  10. data/Rakefile +22 -7
  11. data/examples/paths.rb +36 -0
  12. data/examples/selectors.rb +28 -0
  13. data/lib/spreewald/all_steps.rb +4 -1
  14. data/lib/spreewald/browser_tab_steps.rb +91 -0
  15. data/lib/spreewald/development_steps.rb +1 -1
  16. data/lib/spreewald/email_steps.rb +11 -4
  17. data/lib/spreewald/session_steps.rb +18 -0
  18. data/lib/spreewald/time_steps.rb +102 -0
  19. data/lib/spreewald/timecop_steps.rb +6 -76
  20. data/lib/spreewald/web_steps.rb +7 -15
  21. data/lib/spreewald_support/driver_info.rb +8 -0
  22. data/lib/spreewald_support/tolerance_for_selenium_sync_issues.rb +9 -3
  23. data/lib/spreewald_support/version.rb +1 -1
  24. data/support/step_definition.rb +1 -1
  25. data/support/step_definition_file.rb +2 -0
  26. data/tests/rails-3_capybara-1/Gemfile +2 -1
  27. data/tests/rails-3_capybara-1/Gemfile.lock +3 -1
  28. data/tests/rails-3_capybara-1/app +1 -1
  29. data/tests/rails-3_capybara-1/config/cucumber.yml +1 -1
  30. data/tests/rails-3_capybara-1/config/database.yml +1 -1
  31. data/tests/rails-3_capybara-1/config/routes.rb +1 -0
  32. data/tests/rails-3_capybara-1/db +1 -1
  33. data/tests/rails-3_capybara-1/features/shared +1 -1
  34. data/tests/rails-3_capybara-1/features/support/paths.rb +1 -1
  35. data/tests/rails-3_capybara-1/features/support/selectors.rb +1 -1
  36. data/tests/rails-3_capybara-1/public +1 -1
  37. data/tests/rails-3_capybara-2/Gemfile +2 -1
  38. data/tests/rails-3_capybara-2/Gemfile.lock +3 -1
  39. data/tests/rails-3_capybara-2/Rakefile +1 -1
  40. data/tests/rails-3_capybara-2/app +1 -1
  41. data/tests/rails-3_capybara-2/config +1 -1
  42. data/tests/rails-3_capybara-2/config.ru +1 -1
  43. data/tests/rails-3_capybara-2/db +1 -1
  44. data/tests/rails-3_capybara-2/features +1 -1
  45. data/tests/rails-3_capybara-2/public +1 -1
  46. data/tests/rails-3_capybara-2/script +1 -1
  47. data/tests/rails-4_capybara-3/Gemfile +1 -1
  48. data/tests/rails-4_capybara-3/Gemfile.lock +3 -3
  49. data/tests/rails-4_capybara-3/app +1 -1
  50. data/tests/rails-4_capybara-3/config/routes.rb +1 -0
  51. data/tests/rails-4_capybara-3/db +1 -1
  52. data/tests/rails-4_capybara-3/features/browser_tab_steps.feature +1 -0
  53. data/tests/rails-4_capybara-3/features/development_steps.feature +1 -1
  54. data/tests/rails-4_capybara-3/features/email_steps.feature +1 -1
  55. data/tests/rails-4_capybara-3/features/overriding.feature +1 -1
  56. data/tests/rails-4_capybara-3/features/session_steps.feature +1 -0
  57. data/tests/rails-4_capybara-3/features/step_definitions/overriding_steps.rb +1 -1
  58. data/tests/rails-4_capybara-3/features/step_definitions/test_steps.rb +1 -1
  59. data/tests/rails-4_capybara-3/features/support/paths.rb +1 -1
  60. data/tests/rails-4_capybara-3/features/support/selectors.rb +1 -1
  61. data/tests/rails-4_capybara-3/features/table_steps.feature +1 -1
  62. data/tests/rails-4_capybara-3/features/time_steps.feature +1 -0
  63. data/tests/rails-4_capybara-3/features/web_steps.feature +1 -1
  64. data/tests/rails-4_capybara-3/public/fixture_files +1 -1
  65. data/tests/rails-6_capybara-3/.ruby-version +1 -0
  66. data/tests/rails-6_capybara-3/Gemfile +25 -0
  67. data/tests/rails-6_capybara-3/Gemfile.lock +264 -0
  68. data/tests/rails-6_capybara-3/README.md +24 -0
  69. data/tests/rails-6_capybara-3/Rakefile +6 -0
  70. data/tests/rails-6_capybara-3/app/controllers +1 -0
  71. data/tests/rails-6_capybara-3/app/mailers/application_mailer.rb +4 -0
  72. data/tests/rails-6_capybara-3/app/mailers/spreewald_mailer.rb +30 -0
  73. data/tests/rails-6_capybara-3/app/models/application_record.rb +3 -0
  74. data/tests/rails-6_capybara-3/app/views +1 -0
  75. data/tests/rails-6_capybara-3/bin/bundle +114 -0
  76. data/tests/rails-6_capybara-3/bin/rails +4 -0
  77. data/tests/rails-6_capybara-3/bin/rake +4 -0
  78. data/tests/rails-6_capybara-3/bin/setup +33 -0
  79. data/tests/rails-6_capybara-3/config.ru +5 -0
  80. data/tests/rails-6_capybara-3/config/application.rb +35 -0
  81. data/tests/rails-6_capybara-3/config/boot.rb +3 -0
  82. data/tests/rails-6_capybara-3/config/cucumber.yml +9 -0
  83. data/tests/rails-6_capybara-3/config/database.yml +25 -0
  84. data/tests/rails-6_capybara-3/config/environment.rb +5 -0
  85. data/tests/rails-6_capybara-3/config/environments/development.rb +48 -0
  86. data/tests/rails-6_capybara-3/config/environments/test.rb +45 -0
  87. data/tests/rails-6_capybara-3/config/initializers/application_controller_renderer.rb +8 -0
  88. data/tests/rails-6_capybara-3/config/initializers/backtrace_silencers.rb +7 -0
  89. data/tests/rails-6_capybara-3/config/initializers/content_security_policy.rb +28 -0
  90. data/tests/rails-6_capybara-3/config/initializers/cookies_serializer.rb +5 -0
  91. data/tests/rails-6_capybara-3/config/initializers/filter_parameter_logging.rb +4 -0
  92. data/tests/rails-6_capybara-3/config/initializers/inflections.rb +16 -0
  93. data/tests/rails-6_capybara-3/config/initializers/mime_types.rb +4 -0
  94. data/tests/rails-6_capybara-3/config/initializers/wrap_parameters.rb +14 -0
  95. data/tests/rails-6_capybara-3/config/locales/en.yml +33 -0
  96. data/tests/rails-6_capybara-3/config/routes.rb +1 -0
  97. data/tests/rails-6_capybara-3/db +1 -0
  98. data/tests/rails-6_capybara-3/features/browser_tab_steps.feature +1 -0
  99. data/tests/rails-6_capybara-3/features/development_steps.feature +1 -0
  100. data/tests/rails-6_capybara-3/features/email_steps.feature +1 -0
  101. data/tests/rails-6_capybara-3/features/overriding.feature +1 -0
  102. data/tests/rails-6_capybara-3/features/session_steps.feature +1 -0
  103. data/tests/{shared/app/views/emails/send_email.haml → rails-6_capybara-3/features/step_definitions/.gitkeep} +0 -0
  104. data/tests/rails-6_capybara-3/features/step_definitions/overriding_steps.rb +1 -0
  105. data/tests/rails-6_capybara-3/features/step_definitions/test_steps.rb +1 -0
  106. data/tests/rails-6_capybara-3/features/support/env.rb +66 -0
  107. data/tests/rails-6_capybara-3/features/support/paths.rb +1 -0
  108. data/tests/rails-6_capybara-3/features/support/selectors.rb +1 -0
  109. data/tests/rails-6_capybara-3/features/support/selenium.rb +3 -0
  110. data/tests/rails-6_capybara-3/features/table_steps.feature +1 -0
  111. data/tests/rails-6_capybara-3/features/time_steps.feature +1 -0
  112. data/tests/rails-6_capybara-3/features/web_steps.feature +1 -0
  113. data/tests/{shared/db/migrate/.gitignore → rails-6_capybara-3/lib/tasks/.keep} +0 -0
  114. data/tests/rails-6_capybara-3/lib/tasks/cucumber.rake +76 -0
  115. data/tests/rails-6_capybara-3/log/.keep +0 -0
  116. data/tests/rails-6_capybara-3/public/404.html +67 -0
  117. data/tests/rails-6_capybara-3/public/422.html +67 -0
  118. data/tests/rails-6_capybara-3/public/500.html +66 -0
  119. data/tests/rails-6_capybara-3/public/favicon.ico +0 -0
  120. data/tests/rails-6_capybara-3/public/fixture_files +1 -0
  121. data/tests/rails-6_capybara-3/script/cucumber +11 -0
  122. data/tests/shared/app/controllers/application_controller.rb +9 -0
  123. data/tests/shared/app/controllers/authenticated_controller.rb +10 -2
  124. data/tests/shared/app/controllers/emails_controller.rb +25 -7
  125. data/tests/shared/app/controllers/forms_controller.rb +3 -0
  126. data/tests/shared/app/controllers/static_pages_controller.rb +23 -0
  127. data/tests/shared/app/models/mailer.rb +16 -0
  128. data/tests/shared/app/views/layouts/mailer.html.erb +13 -0
  129. data/tests/shared/app/views/layouts/mailer.text.erb +1 -0
  130. data/tests/shared/app/views/mailer/{email.haml → email.text.erb} +0 -0
  131. data/tests/shared/app/views/mailer/html_email_with_links.haml +6 -0
  132. data/tests/shared/app/views/mailer/text_email_with_links.text.erb +6 -0
  133. data/tests/shared/app/views/spreewald_mailer +1 -0
  134. data/tests/shared/app/views/static_pages/session_1.haml +1 -0
  135. data/tests/shared/app/views/static_pages/session_2.haml +1 -0
  136. data/tests/shared/app/views/static_pages/session_3.haml +1 -0
  137. data/tests/shared/app/views/static_pages/tab_1.haml +3 -0
  138. data/tests/shared/app/views/static_pages/tab_2.haml +2 -0
  139. data/tests/shared/app/views/static_pages/tab_3.haml +1 -0
  140. data/tests/shared/app/views/static_pages/time.html.haml +2 -0
  141. data/tests/shared/app/views/static_pages/visibility.html.haml +8 -1
  142. data/tests/shared/app/views/static_pages/within.html.haml +3 -0
  143. data/tests/shared/config/routes.rb +40 -0
  144. data/tests/shared/db/migrate/.keep +0 -0
  145. data/tests/shared/features/shared/browser_tab_steps.feature +103 -0
  146. data/tests/shared/features/shared/email_steps.feature +18 -0
  147. data/tests/shared/features/shared/session_steps.feature +29 -0
  148. data/tests/shared/features/shared/time_steps.feature +31 -0
  149. data/tests/shared/features/shared/web_steps.feature +17 -0
  150. metadata +166 -12
  151. data/tests/rails-3_capybara-1/config/routes.rb +0 -5
  152. data/tests/rails-4_capybara-3/.gitignore +0 -17
  153. data/tests/rails-4_capybara-3/config/routes.rb +0 -3
@@ -214,3 +214,21 @@ Feature: Test Spreewald's email steps
214
214
  line
215
215
  '''
216
216
  """
217
+
218
+
219
+ Scenario: /^I follow the (first|second|third)? ?link in the e?mail$/ (HTML e-mail body)
220
+ When I go to "/emails/send_html_email_with_links"
221
+ And I follow the first link in the email
222
+ Then I should be on "/static_pages/link_target"
223
+
224
+ When I follow the second link in the email
225
+ Then I should be on "/static_pages/second_link_target"
226
+
227
+
228
+ Scenario: /^I follow the (first|second|third)? ?link in the e?mail$/ (text e-mail body)
229
+ When I go to "/emails/send_text_email_with_links"
230
+ And I follow the first link in the email
231
+ Then I should be on "/static_pages/link_target"
232
+
233
+ When I follow the second link in the email
234
+ Then I should be on "/static_pages/second_link_target"
@@ -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"
@@ -159,6 +159,10 @@ Feature: Web steps
159
159
  Then the "Visible field" field should be visible
160
160
  But the "Hidden field" field should not be visible
161
161
 
162
+ Scenario: /^the "([^\"]*)" field should( not)? be visible within (.*[^:])$/
163
+ When I go to "/static_pages/visibility"
164
+ Then "content" should not be visible within ".inside"
165
+ But "content" should be visible within ".outside"
162
166
 
163
167
  @javascript
164
168
  Scenario: /^the "([^\"]*)" field should( not)? be visible$/ with Javascript
@@ -179,6 +183,10 @@ Feature: Web steps
179
183
  When I go to "/static_pages/visibility"
180
184
  And "div with style: display: none" should be hidden
181
185
 
186
+ Scenario: /^(the tag )?"([^\"]+)" should be hidden within (.*[^:])$/
187
+ When I go to "/static_pages/visibility"
188
+ Then "content" should be hidden within ".inside"
189
+
182
190
 
183
191
  Scenario: /^(the tag )?"([^\"]+)" should be hidden$/ within container with javascript
184
192
  When I go to "/static_pages/visibility"
@@ -220,6 +228,10 @@ Feature: Web steps
220
228
  But I should not see "Nonsense" within ".table"
221
229
  And I should not see "Nonsense" within a table
222
230
 
231
+ # making sure it works with a within scope correctly when the same element is available outside
232
+ Then I should not see "Outside Table" within ".table"
233
+ And I should not see "Outside Table" within a table
234
+ But I should see "Outside Table"
223
235
 
224
236
  Scenario: /^(?:|I )should see \/([^\/]*)\/$/
225
237
  When I go to "/static_pages/within"
@@ -230,6 +242,11 @@ Feature: Web steps
230
242
  But I should not see /Nonsense/
231
243
  And I should not see /http://other-domain.com/
232
244
 
245
+ # making sure it works with a within scope correctly when the same element is available outside
246
+ Then I should not see /Outside Table/ within ".table"
247
+ And I should not see /Outside Table/ within a table
248
+ But I should see /Outside Table/
249
+
233
250
 
234
251
  Scenario: /^(?:|I )should see \/([^\/]*)\/ within (.*[^:])$/
235
252
  When I go to "/static_pages/within"
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.3.0
4
+ version: 2.7.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: 2019-08-22 00:00:00.000000000 Z
11
+ date: 2020-08-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cucumber
@@ -142,6 +142,8 @@ files:
142
142
  - Gemfile.ruby218.lock
143
143
  - Gemfile.ruby245
144
144
  - Gemfile.ruby245.lock
145
+ - Gemfile.ruby266
146
+ - Gemfile.ruby266.lock
145
147
  - LICENSE
146
148
  - README.md
147
149
  - Rakefile
@@ -152,10 +154,13 @@ files:
152
154
  - features/support/aruba.rb
153
155
  - lib/spreewald.rb
154
156
  - lib/spreewald/all_steps.rb
157
+ - lib/spreewald/browser_tab_steps.rb
155
158
  - lib/spreewald/development_steps.rb
156
159
  - lib/spreewald/email_steps.rb
157
160
  - lib/spreewald/file_attachment_steps.rb
161
+ - lib/spreewald/session_steps.rb
158
162
  - lib/spreewald/table_steps.rb
163
+ - lib/spreewald/time_steps.rb
159
164
  - lib/spreewald/timecop_steps.rb
160
165
  - lib/spreewald/web_steps.rb
161
166
  - lib/spreewald_support/comparison.rb
@@ -216,7 +221,6 @@ files:
216
221
  - tests/rails-3_capybara-2/features
217
222
  - tests/rails-3_capybara-2/public
218
223
  - tests/rails-3_capybara-2/script
219
- - tests/rails-4_capybara-3/.gitignore
220
224
  - tests/rails-4_capybara-3/Gemfile
221
225
  - tests/rails-4_capybara-3/Gemfile.lock
222
226
  - tests/rails-4_capybara-3/README.rdoc
@@ -247,9 +251,11 @@ files:
247
251
  - tests/rails-4_capybara-3/config/routes.rb
248
252
  - tests/rails-4_capybara-3/config/secrets.yml
249
253
  - tests/rails-4_capybara-3/db
254
+ - tests/rails-4_capybara-3/features/browser_tab_steps.feature
250
255
  - tests/rails-4_capybara-3/features/development_steps.feature
251
256
  - tests/rails-4_capybara-3/features/email_steps.feature
252
257
  - tests/rails-4_capybara-3/features/overriding.feature
258
+ - tests/rails-4_capybara-3/features/session_steps.feature
253
259
  - tests/rails-4_capybara-3/features/step_definitions/overriding_steps.rb
254
260
  - tests/rails-4_capybara-3/features/step_definitions/test_steps.rb
255
261
  - tests/rails-4_capybara-3/features/support/env.rb
@@ -257,6 +263,7 @@ files:
257
263
  - tests/rails-4_capybara-3/features/support/selectors.rb
258
264
  - tests/rails-4_capybara-3/features/support/selenium.rb
259
265
  - tests/rails-4_capybara-3/features/table_steps.feature
266
+ - tests/rails-4_capybara-3/features/time_steps.feature
260
267
  - tests/rails-4_capybara-3/features/web_steps.feature
261
268
  - tests/rails-4_capybara-3/lib/tasks/cucumber.rake
262
269
  - tests/rails-4_capybara-3/log/.keep
@@ -266,6 +273,63 @@ files:
266
273
  - tests/rails-4_capybara-3/public/favicon.ico
267
274
  - tests/rails-4_capybara-3/public/fixture_files
268
275
  - tests/rails-4_capybara-3/script/cucumber
276
+ - tests/rails-6_capybara-3/.ruby-version
277
+ - tests/rails-6_capybara-3/Gemfile
278
+ - tests/rails-6_capybara-3/Gemfile.lock
279
+ - tests/rails-6_capybara-3/README.md
280
+ - tests/rails-6_capybara-3/Rakefile
281
+ - tests/rails-6_capybara-3/app/controllers
282
+ - tests/rails-6_capybara-3/app/mailers/application_mailer.rb
283
+ - tests/rails-6_capybara-3/app/mailers/spreewald_mailer.rb
284
+ - tests/rails-6_capybara-3/app/models/application_record.rb
285
+ - tests/rails-6_capybara-3/app/views
286
+ - tests/rails-6_capybara-3/bin/bundle
287
+ - tests/rails-6_capybara-3/bin/rails
288
+ - tests/rails-6_capybara-3/bin/rake
289
+ - tests/rails-6_capybara-3/bin/setup
290
+ - tests/rails-6_capybara-3/config.ru
291
+ - tests/rails-6_capybara-3/config/application.rb
292
+ - tests/rails-6_capybara-3/config/boot.rb
293
+ - tests/rails-6_capybara-3/config/cucumber.yml
294
+ - tests/rails-6_capybara-3/config/database.yml
295
+ - tests/rails-6_capybara-3/config/environment.rb
296
+ - tests/rails-6_capybara-3/config/environments/development.rb
297
+ - tests/rails-6_capybara-3/config/environments/test.rb
298
+ - tests/rails-6_capybara-3/config/initializers/application_controller_renderer.rb
299
+ - tests/rails-6_capybara-3/config/initializers/backtrace_silencers.rb
300
+ - tests/rails-6_capybara-3/config/initializers/content_security_policy.rb
301
+ - tests/rails-6_capybara-3/config/initializers/cookies_serializer.rb
302
+ - tests/rails-6_capybara-3/config/initializers/filter_parameter_logging.rb
303
+ - tests/rails-6_capybara-3/config/initializers/inflections.rb
304
+ - tests/rails-6_capybara-3/config/initializers/mime_types.rb
305
+ - tests/rails-6_capybara-3/config/initializers/wrap_parameters.rb
306
+ - tests/rails-6_capybara-3/config/locales/en.yml
307
+ - tests/rails-6_capybara-3/config/routes.rb
308
+ - tests/rails-6_capybara-3/db
309
+ - tests/rails-6_capybara-3/features/browser_tab_steps.feature
310
+ - tests/rails-6_capybara-3/features/development_steps.feature
311
+ - tests/rails-6_capybara-3/features/email_steps.feature
312
+ - tests/rails-6_capybara-3/features/overriding.feature
313
+ - tests/rails-6_capybara-3/features/session_steps.feature
314
+ - tests/rails-6_capybara-3/features/step_definitions/.gitkeep
315
+ - tests/rails-6_capybara-3/features/step_definitions/overriding_steps.rb
316
+ - tests/rails-6_capybara-3/features/step_definitions/test_steps.rb
317
+ - tests/rails-6_capybara-3/features/support/env.rb
318
+ - tests/rails-6_capybara-3/features/support/paths.rb
319
+ - tests/rails-6_capybara-3/features/support/selectors.rb
320
+ - tests/rails-6_capybara-3/features/support/selenium.rb
321
+ - tests/rails-6_capybara-3/features/table_steps.feature
322
+ - tests/rails-6_capybara-3/features/time_steps.feature
323
+ - tests/rails-6_capybara-3/features/web_steps.feature
324
+ - tests/rails-6_capybara-3/lib/tasks/.keep
325
+ - tests/rails-6_capybara-3/lib/tasks/cucumber.rake
326
+ - tests/rails-6_capybara-3/log/.keep
327
+ - tests/rails-6_capybara-3/public/404.html
328
+ - tests/rails-6_capybara-3/public/422.html
329
+ - tests/rails-6_capybara-3/public/500.html
330
+ - tests/rails-6_capybara-3/public/favicon.ico
331
+ - tests/rails-6_capybara-3/public/fixture_files
332
+ - tests/rails-6_capybara-3/script/cucumber
269
333
  - tests/shared/app/controllers/application_controller.rb
270
334
  - tests/shared/app/controllers/authenticated_controller.rb
271
335
  - tests/shared/app/controllers/downloads_controller.rb
@@ -274,7 +338,6 @@ files:
274
338
  - tests/shared/app/controllers/static_pages_controller.rb
275
339
  - tests/shared/app/controllers/tables_controller.rb
276
340
  - tests/shared/app/models/mailer.rb
277
- - tests/shared/app/views/emails/send_email.haml
278
341
  - tests/shared/app/views/forms/checkbox_form.html.haml
279
342
  - tests/shared/app/views/forms/disabled_elements.html.haml
280
343
  - tests/shared/app/views/forms/form1.html.haml
@@ -282,7 +345,12 @@ files:
282
345
  - tests/shared/app/views/forms/invalid_form.html.haml
283
346
  - tests/shared/app/views/forms/select_fields.html.haml
284
347
  - tests/shared/app/views/layouts/application.html.haml
285
- - tests/shared/app/views/mailer/email.haml
348
+ - tests/shared/app/views/layouts/mailer.html.erb
349
+ - tests/shared/app/views/layouts/mailer.text.erb
350
+ - tests/shared/app/views/mailer/email.text.erb
351
+ - tests/shared/app/views/mailer/html_email_with_links.haml
352
+ - tests/shared/app/views/mailer/text_email_with_links.text.erb
353
+ - tests/shared/app/views/spreewald_mailer
286
354
  - tests/shared/app/views/static_pages/click_on.html.haml
287
355
  - tests/shared/app/views/static_pages/home.html.haml
288
356
  - tests/shared/app/views/static_pages/link_to_home.html.haml
@@ -290,20 +358,32 @@ files:
290
358
  - tests/shared/app/views/static_pages/numbers.html.haml
291
359
  - tests/shared/app/views/static_pages/overridden.html.haml
292
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
293
368
  - tests/shared/app/views/static_pages/visibility.html.haml
294
369
  - tests/shared/app/views/static_pages/within.html.haml
295
370
  - tests/shared/app/views/tables/table1.html.haml
296
371
  - tests/shared/app/views/tables/table_with_weird_spaces.html.erb
297
372
  - tests/shared/config/cucumber.yml
298
373
  - tests/shared/config/database.yml
299
- - tests/shared/db/migrate/.gitignore
374
+ - tests/shared/config/routes.rb
375
+ - tests/shared/db/development.sqlite3
376
+ - tests/shared/db/migrate/.keep
300
377
  - tests/shared/db/schema.rb
378
+ - tests/shared/features/shared/browser_tab_steps.feature
301
379
  - tests/shared/features/shared/development_steps.feature
302
380
  - tests/shared/features/shared/email_steps.feature
303
381
  - tests/shared/features/shared/overriding.feature
382
+ - tests/shared/features/shared/session_steps.feature
304
383
  - tests/shared/features/shared/step_definitions/overriding_steps.rb
305
384
  - tests/shared/features/shared/step_definitions/test_steps.rb
306
385
  - tests/shared/features/shared/table_steps.feature
386
+ - tests/shared/features/shared/time_steps.feature
307
387
  - tests/shared/features/shared/web_steps.feature
308
388
  - tests/shared/features/support/paths.rb
309
389
  - tests/shared/features/support/selectors.rb
@@ -330,8 +410,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
330
410
  - !ruby/object:Gem::Version
331
411
  version: '0'
332
412
  requirements: []
333
- rubyforge_project:
334
- rubygems_version: 2.6.14.3
413
+ rubygems_version: 3.1.2
335
414
  signing_key:
336
415
  specification_version: 4
337
416
  summary: Collection of useful cucumber steps.
@@ -373,7 +452,6 @@ test_files:
373
452
  - tests/rails-3_capybara-2/features
374
453
  - tests/rails-3_capybara-2/public
375
454
  - tests/rails-3_capybara-2/script
376
- - tests/rails-4_capybara-3/.gitignore
377
455
  - tests/rails-4_capybara-3/Gemfile
378
456
  - tests/rails-4_capybara-3/Gemfile.lock
379
457
  - tests/rails-4_capybara-3/README.rdoc
@@ -404,9 +482,11 @@ test_files:
404
482
  - tests/rails-4_capybara-3/config/routes.rb
405
483
  - tests/rails-4_capybara-3/config/secrets.yml
406
484
  - tests/rails-4_capybara-3/db
485
+ - tests/rails-4_capybara-3/features/browser_tab_steps.feature
407
486
  - tests/rails-4_capybara-3/features/development_steps.feature
408
487
  - tests/rails-4_capybara-3/features/email_steps.feature
409
488
  - tests/rails-4_capybara-3/features/overriding.feature
489
+ - tests/rails-4_capybara-3/features/session_steps.feature
410
490
  - tests/rails-4_capybara-3/features/step_definitions/overriding_steps.rb
411
491
  - tests/rails-4_capybara-3/features/step_definitions/test_steps.rb
412
492
  - tests/rails-4_capybara-3/features/support/env.rb
@@ -414,6 +494,7 @@ test_files:
414
494
  - tests/rails-4_capybara-3/features/support/selectors.rb
415
495
  - tests/rails-4_capybara-3/features/support/selenium.rb
416
496
  - tests/rails-4_capybara-3/features/table_steps.feature
497
+ - tests/rails-4_capybara-3/features/time_steps.feature
417
498
  - tests/rails-4_capybara-3/features/web_steps.feature
418
499
  - tests/rails-4_capybara-3/lib/tasks/cucumber.rake
419
500
  - tests/rails-4_capybara-3/log/.keep
@@ -423,6 +504,63 @@ test_files:
423
504
  - tests/rails-4_capybara-3/public/favicon.ico
424
505
  - tests/rails-4_capybara-3/public/fixture_files
425
506
  - tests/rails-4_capybara-3/script/cucumber
507
+ - tests/rails-6_capybara-3/.ruby-version
508
+ - tests/rails-6_capybara-3/Gemfile
509
+ - tests/rails-6_capybara-3/Gemfile.lock
510
+ - tests/rails-6_capybara-3/README.md
511
+ - tests/rails-6_capybara-3/Rakefile
512
+ - tests/rails-6_capybara-3/app/controllers
513
+ - tests/rails-6_capybara-3/app/mailers/application_mailer.rb
514
+ - tests/rails-6_capybara-3/app/mailers/spreewald_mailer.rb
515
+ - tests/rails-6_capybara-3/app/models/application_record.rb
516
+ - tests/rails-6_capybara-3/app/views
517
+ - tests/rails-6_capybara-3/bin/bundle
518
+ - tests/rails-6_capybara-3/bin/rails
519
+ - tests/rails-6_capybara-3/bin/rake
520
+ - tests/rails-6_capybara-3/bin/setup
521
+ - tests/rails-6_capybara-3/config.ru
522
+ - tests/rails-6_capybara-3/config/application.rb
523
+ - tests/rails-6_capybara-3/config/boot.rb
524
+ - tests/rails-6_capybara-3/config/cucumber.yml
525
+ - tests/rails-6_capybara-3/config/database.yml
526
+ - tests/rails-6_capybara-3/config/environment.rb
527
+ - tests/rails-6_capybara-3/config/environments/development.rb
528
+ - tests/rails-6_capybara-3/config/environments/test.rb
529
+ - tests/rails-6_capybara-3/config/initializers/application_controller_renderer.rb
530
+ - tests/rails-6_capybara-3/config/initializers/backtrace_silencers.rb
531
+ - tests/rails-6_capybara-3/config/initializers/content_security_policy.rb
532
+ - tests/rails-6_capybara-3/config/initializers/cookies_serializer.rb
533
+ - tests/rails-6_capybara-3/config/initializers/filter_parameter_logging.rb
534
+ - tests/rails-6_capybara-3/config/initializers/inflections.rb
535
+ - tests/rails-6_capybara-3/config/initializers/mime_types.rb
536
+ - tests/rails-6_capybara-3/config/initializers/wrap_parameters.rb
537
+ - tests/rails-6_capybara-3/config/locales/en.yml
538
+ - tests/rails-6_capybara-3/config/routes.rb
539
+ - tests/rails-6_capybara-3/db
540
+ - tests/rails-6_capybara-3/features/browser_tab_steps.feature
541
+ - tests/rails-6_capybara-3/features/development_steps.feature
542
+ - tests/rails-6_capybara-3/features/email_steps.feature
543
+ - tests/rails-6_capybara-3/features/overriding.feature
544
+ - tests/rails-6_capybara-3/features/session_steps.feature
545
+ - tests/rails-6_capybara-3/features/step_definitions/.gitkeep
546
+ - tests/rails-6_capybara-3/features/step_definitions/overriding_steps.rb
547
+ - tests/rails-6_capybara-3/features/step_definitions/test_steps.rb
548
+ - tests/rails-6_capybara-3/features/support/env.rb
549
+ - tests/rails-6_capybara-3/features/support/paths.rb
550
+ - tests/rails-6_capybara-3/features/support/selectors.rb
551
+ - tests/rails-6_capybara-3/features/support/selenium.rb
552
+ - tests/rails-6_capybara-3/features/table_steps.feature
553
+ - tests/rails-6_capybara-3/features/time_steps.feature
554
+ - tests/rails-6_capybara-3/features/web_steps.feature
555
+ - tests/rails-6_capybara-3/lib/tasks/.keep
556
+ - tests/rails-6_capybara-3/lib/tasks/cucumber.rake
557
+ - tests/rails-6_capybara-3/log/.keep
558
+ - tests/rails-6_capybara-3/public/404.html
559
+ - tests/rails-6_capybara-3/public/422.html
560
+ - tests/rails-6_capybara-3/public/500.html
561
+ - tests/rails-6_capybara-3/public/favicon.ico
562
+ - tests/rails-6_capybara-3/public/fixture_files
563
+ - tests/rails-6_capybara-3/script/cucumber
426
564
  - tests/shared/app/controllers/application_controller.rb
427
565
  - tests/shared/app/controllers/authenticated_controller.rb
428
566
  - tests/shared/app/controllers/downloads_controller.rb
@@ -431,7 +569,6 @@ test_files:
431
569
  - tests/shared/app/controllers/static_pages_controller.rb
432
570
  - tests/shared/app/controllers/tables_controller.rb
433
571
  - tests/shared/app/models/mailer.rb
434
- - tests/shared/app/views/emails/send_email.haml
435
572
  - tests/shared/app/views/forms/checkbox_form.html.haml
436
573
  - tests/shared/app/views/forms/disabled_elements.html.haml
437
574
  - tests/shared/app/views/forms/form1.html.haml
@@ -439,7 +576,12 @@ test_files:
439
576
  - tests/shared/app/views/forms/invalid_form.html.haml
440
577
  - tests/shared/app/views/forms/select_fields.html.haml
441
578
  - tests/shared/app/views/layouts/application.html.haml
442
- - tests/shared/app/views/mailer/email.haml
579
+ - tests/shared/app/views/layouts/mailer.html.erb
580
+ - tests/shared/app/views/layouts/mailer.text.erb
581
+ - tests/shared/app/views/mailer/email.text.erb
582
+ - tests/shared/app/views/mailer/html_email_with_links.haml
583
+ - tests/shared/app/views/mailer/text_email_with_links.text.erb
584
+ - tests/shared/app/views/spreewald_mailer
443
585
  - tests/shared/app/views/static_pages/click_on.html.haml
444
586
  - tests/shared/app/views/static_pages/home.html.haml
445
587
  - tests/shared/app/views/static_pages/link_to_home.html.haml
@@ -447,20 +589,32 @@ test_files:
447
589
  - tests/shared/app/views/static_pages/numbers.html.haml
448
590
  - tests/shared/app/views/static_pages/overridden.html.haml
449
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
450
599
  - tests/shared/app/views/static_pages/visibility.html.haml
451
600
  - tests/shared/app/views/static_pages/within.html.haml
452
601
  - tests/shared/app/views/tables/table1.html.haml
453
602
  - tests/shared/app/views/tables/table_with_weird_spaces.html.erb
454
603
  - tests/shared/config/cucumber.yml
455
604
  - tests/shared/config/database.yml
456
- - tests/shared/db/migrate/.gitignore
605
+ - tests/shared/config/routes.rb
606
+ - tests/shared/db/development.sqlite3
607
+ - tests/shared/db/migrate/.keep
457
608
  - tests/shared/db/schema.rb
609
+ - tests/shared/features/shared/browser_tab_steps.feature
458
610
  - tests/shared/features/shared/development_steps.feature
459
611
  - tests/shared/features/shared/email_steps.feature
460
612
  - tests/shared/features/shared/overriding.feature
613
+ - tests/shared/features/shared/session_steps.feature
461
614
  - tests/shared/features/shared/step_definitions/overriding_steps.rb
462
615
  - tests/shared/features/shared/step_definitions/test_steps.rb
463
616
  - tests/shared/features/shared/table_steps.feature
617
+ - tests/shared/features/shared/time_steps.feature
464
618
  - tests/shared/features/shared/web_steps.feature
465
619
  - tests/shared/features/support/paths.rb
466
620
  - tests/shared/features/support/selectors.rb