spreewald 4.1.1 → 4.3.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (88) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/test.yml +0 -5
  3. data/CHANGELOG.md +16 -0
  4. data/Gemfile.lock +3 -3
  5. data/Gemfile.ruby266.lock +59 -42
  6. data/Gemfile.ruby300.lock +37 -53
  7. data/README.md +10 -19
  8. data/Rakefile +5 -11
  9. data/examples/paths.rb +7 -0
  10. data/features/binary.feature +12 -8
  11. data/lib/spreewald/development_steps.rb +5 -5
  12. data/lib/spreewald/email_steps.rb +4 -18
  13. data/lib/spreewald/web_steps.rb +53 -50
  14. data/lib/spreewald.rb +1 -0
  15. data/lib/spreewald_support/field_errors.rb +56 -0
  16. data/lib/spreewald_support/version.rb +1 -1
  17. data/lib/steps/follow_the_link.rb +63 -0
  18. data/lib/steps/show_me_the_mails.rb +20 -0
  19. data/spec/steps/follow_the_link_spec.rb +81 -0
  20. data/spec/steps/show_me_the_mails_spec.rb +96 -0
  21. data/support/step_definition.rb +11 -0
  22. data/support/step_manager.rb +1 -1
  23. data/tests/rails-6_capybara-3/Gemfile.lock +1 -1
  24. data/tests/shared/app/controllers/forms_controller.rb +8 -2
  25. data/tests/shared/app/controllers/static_pages_controller.rb +3 -0
  26. data/tests/shared/app/views/forms/invalid_bootstrap3_form.html.haml +16 -0
  27. data/tests/shared/app/views/forms/invalid_bootstrap4_form.html.haml +18 -0
  28. data/tests/shared/app/views/forms/{invalid_form.html.haml → invalid_rails_form.html.haml} +0 -0
  29. data/tests/shared/app/views/static_pages/should_see.haml +7 -0
  30. data/tests/shared/config/routes.rb +4 -1
  31. data/tests/shared/features/shared/iframe_steps.feature +1 -2
  32. data/tests/shared/features/shared/web_steps.feature +47 -15
  33. metadata +15 -112
  34. data/Gemfile.ruby245 +0 -10
  35. data/Gemfile.ruby245.lock +0 -73
  36. data/tests/rails-4_capybara-2/Gemfile +0 -24
  37. data/tests/rails-4_capybara-2/Gemfile.lock +0 -230
  38. data/tests/rails-4_capybara-2/README.rdoc +0 -28
  39. data/tests/rails-4_capybara-2/Rakefile +0 -6
  40. data/tests/rails-4_capybara-2/app +0 -1
  41. data/tests/rails-4_capybara-2/bin/bundle +0 -3
  42. data/tests/rails-4_capybara-2/bin/rails +0 -4
  43. data/tests/rails-4_capybara-2/bin/rake +0 -4
  44. data/tests/rails-4_capybara-2/bin/setup +0 -29
  45. data/tests/rails-4_capybara-2/config/application.rb +0 -35
  46. data/tests/rails-4_capybara-2/config/boot.rb +0 -3
  47. data/tests/rails-4_capybara-2/config/cucumber.yml +0 -8
  48. data/tests/rails-4_capybara-2/config/database.yml +0 -18
  49. data/tests/rails-4_capybara-2/config/environment.rb +0 -5
  50. data/tests/rails-4_capybara-2/config/environments/development.rb +0 -28
  51. data/tests/rails-4_capybara-2/config/environments/test.rb +0 -42
  52. data/tests/rails-4_capybara-2/config/initializers/backtrace_silencers.rb +0 -7
  53. data/tests/rails-4_capybara-2/config/initializers/cookies_serializer.rb +0 -3
  54. data/tests/rails-4_capybara-2/config/initializers/filter_parameter_logging.rb +0 -4
  55. data/tests/rails-4_capybara-2/config/initializers/inflections.rb +0 -16
  56. data/tests/rails-4_capybara-2/config/initializers/mime_types.rb +0 -4
  57. data/tests/rails-4_capybara-2/config/initializers/session_store.rb +0 -3
  58. data/tests/rails-4_capybara-2/config/initializers/silence_deprecation_warnings.rb +0 -11
  59. data/tests/rails-4_capybara-2/config/initializers/to_time_preserves_timezone.rb +0 -10
  60. data/tests/rails-4_capybara-2/config/initializers/wrap_parameters.rb +0 -14
  61. data/tests/rails-4_capybara-2/config/locales/en.yml +0 -23
  62. data/tests/rails-4_capybara-2/config/routes.rb +0 -1
  63. data/tests/rails-4_capybara-2/config/secrets.yml +0 -22
  64. data/tests/rails-4_capybara-2/config.ru +0 -4
  65. data/tests/rails-4_capybara-2/db +0 -1
  66. data/tests/rails-4_capybara-2/features/browser_tab_steps.feature +0 -1
  67. data/tests/rails-4_capybara-2/features/development_steps.feature +0 -1
  68. data/tests/rails-4_capybara-2/features/email_steps.feature +0 -1
  69. data/tests/rails-4_capybara-2/features/iframe_steps.feature +0 -1
  70. data/tests/rails-4_capybara-2/features/overriding.feature +0 -1
  71. data/tests/rails-4_capybara-2/features/session_steps.feature +0 -1
  72. data/tests/rails-4_capybara-2/features/step_definitions/overriding_steps.rb +0 -1
  73. data/tests/rails-4_capybara-2/features/step_definitions/test_steps.rb +0 -1
  74. data/tests/rails-4_capybara-2/features/support/env.rb +0 -66
  75. data/tests/rails-4_capybara-2/features/support/paths.rb +0 -1
  76. data/tests/rails-4_capybara-2/features/support/selectors.rb +0 -1
  77. data/tests/rails-4_capybara-2/features/support/selenium.rb +0 -1
  78. data/tests/rails-4_capybara-2/features/table_steps.feature +0 -1
  79. data/tests/rails-4_capybara-2/features/time_steps.feature +0 -1
  80. data/tests/rails-4_capybara-2/features/web_steps.feature +0 -1
  81. data/tests/rails-4_capybara-2/lib/tasks/cucumber.rake +0 -65
  82. data/tests/rails-4_capybara-2/log/.keep +0 -0
  83. data/tests/rails-4_capybara-2/public/404.html +0 -67
  84. data/tests/rails-4_capybara-2/public/422.html +0 -67
  85. data/tests/rails-4_capybara-2/public/500.html +0 -66
  86. data/tests/rails-4_capybara-2/public/favicon.ico +0 -0
  87. data/tests/rails-4_capybara-2/public/fixture_files +0 -1
  88. data/tests/rails-4_capybara-2/script/cucumber +0 -10
@@ -1,7 +1,6 @@
1
1
  @javascript
2
2
  Feature: iframe Steps
3
3
 
4
- @not-capybara-2
5
4
  Scenario: Switch between iframes
6
5
  Given I go to "/static_pages/iframe"
7
6
  Then I should not see "Kiwi"
@@ -35,4 +34,4 @@ Feature: iframe Steps
35
34
  And I should see a table with the following rows inside the 2nd iframe:
36
35
  | Color | Fruit |
37
36
  | Red | Cherry |
38
- But I should not see "Content on main page" inside the 1st iframe
37
+ But I should not see "Content on main page" inside the 1st iframe
@@ -1,6 +1,6 @@
1
1
  Feature: Web steps
2
2
 
3
- Scenario: /^the "([^"]*)" field should (not )?contain "([^"]*)"$/
3
+ Scenario: /^the "([^"]*)" field should( not)? contain "([^"]*)"$/
4
4
  When I go to "/forms/form1"
5
5
  Then the "Text control" field should contain "Text control value"
6
6
  Then the "Text control" field should not contain "false text"
@@ -11,7 +11,7 @@ Feature: Web steps
11
11
  Then the "Empty control" field should contain ""
12
12
 
13
13
 
14
- Scenario: /^the "([^"]*)" field should (not )?contain:/
14
+ Scenario: /^the "([^"]*)" field should( not)? contain:/
15
15
  When I go to "/forms/form2"
16
16
  Then the "Text control" field should contain:
17
17
  """
@@ -31,16 +31,28 @@ Feature: Web steps
31
31
  """
32
32
  """
33
33
 
34
-
34
+ @javascript
35
35
  Scenario: /^the "([^\"]*)" field should( not)? have an error$/
36
- When I go to "/forms/invalid_form"
36
+ When I go to "/forms/invalid_rails_form"
37
37
  Then the "A" field should have an error
38
38
  Then the "B" field should have an error
39
39
  Then the "Disabled" field should have an error
40
40
  Then the "C" field should not have an error
41
41
 
42
+
43
+ @javascript
42
44
  Scenario: /^the "([^"]*)" field should have the error "([^"]*)"$/
43
- When I go to "/forms/invalid_form"
45
+ When I go to "/forms/invalid_rails_form"
46
+ Then the "A" field should have the error "is invalid"
47
+ Then the "B" field should have the error "is invalid"
48
+ Then the "Disabled" field should have the error "is invalid"
49
+
50
+ When I go to "/forms/invalid_bootstrap3_form"
51
+ Then the "A" field should have the error "is invalid"
52
+ Then the "B" field should have the error "is invalid"
53
+ Then the "Disabled" field should have the error "is invalid"
54
+
55
+ When I go to "/forms/invalid_bootstrap4_form"
44
56
  Then the "A" field should have the error "is invalid"
45
57
  Then the "B" field should have the error "is invalid"
46
58
  Then the "Disabled" field should have the error "is invalid"
@@ -200,7 +212,7 @@ Feature: Web steps
200
212
  And "div with style: display: none" should be hidden within ".container"
201
213
 
202
214
 
203
- Scenario: /^I should (not )?see (?:an|the) element "([^"]+)"$/
215
+ Scenario: /^I should( not)? see (?:an|the) element "([^"]+)"$/
204
216
  When I go to "/static_pages/see_element"
205
217
  Then I should see an element ".panel"
206
218
  And I should see the element ".panel"
@@ -210,7 +222,7 @@ Feature: Web steps
210
222
  But I should not see the element ".timeline"
211
223
 
212
224
 
213
- Scenario: /^I should (not )?see (?:an|the) element for (.*?)$/
225
+ Scenario: /^I should( not)? see (?:an|the) element for (.*?)$/
214
226
  When I go to "/static_pages/see_element"
215
227
  Then I should see an element for a panel
216
228
  And I should see the element for a panel
@@ -220,7 +232,26 @@ Feature: Web steps
220
232
  And I should not see the element for the timeline
221
233
 
222
234
 
223
- Scenario: /^((?:|I )should see "([^"]*)" within (.*[^:])$/
235
+ Scenario: /^((?:|I )should( not)? see "([^"]*)"$/
236
+ When I go to "/static_pages/should_see"
237
+ Then I should see "Normal text"
238
+ But I should not see "Some special text"
239
+
240
+
241
+ Scenario: /^((?:|I )should( not)? see '([^']*)'$/
242
+ When I go to "/static_pages/should_see"
243
+ Then I should see 'Some text with "quotes"'
244
+ But I should not see 'Some special text with "quotes"'
245
+
246
+
247
+ Scenario: /^I should( not)? see "([^\"]*)" in the HTML$/
248
+ When I go to "/static_pages/should_see"
249
+ Then I should see "Some text in the <b>HTML</b>" in the HTML
250
+ And I should see "Some text in the HTML"
251
+ But I should not see "Some text in the <strong>HTML</strong>" in the HTML
252
+
253
+
254
+ Scenario: /^((?:|I )should( not)? see "([^"]*)" within (.*[^:])$/
224
255
  When I go to "/static_pages/within"
225
256
  Then I should see "Role" within ".table"
226
257
  And I should see "Permissions" within a table
@@ -232,7 +263,8 @@ Feature: Web steps
232
263
  And I should not see "Outside Table" within a table
233
264
  But I should see "Outside Table"
234
265
 
235
- Scenario: /^(?:|I )should see \/([^\/]*)\/$/
266
+
267
+ Scenario: /^(?:|I )should( not)? see \/([^\/]*)\/$/
236
268
  When I go to "/static_pages/within"
237
269
  Then I should see /Shared Text/
238
270
  And I should see /Unique Text/
@@ -241,13 +273,8 @@ Feature: Web steps
241
273
  But I should not see /Nonsense/
242
274
  And I should not see /http://other-domain.com/
243
275
 
244
- # making sure it works with a within scope correctly when the same element is available outside
245
- Then I should not see /Outside Table/ within ".table"
246
- And I should not see /Outside Table/ within a table
247
- But I should see /Outside Table/
248
-
249
276
 
250
- Scenario: /^(?:|I )should see \/([^\/]*)\/ within (.*[^:])$/
277
+ Scenario: /^(?:|I )should( not)? see \/([^\/]*)\/ within (.*[^:])$/
251
278
  When I go to "/static_pages/within"
252
279
  Then I should see /Shared Text/ within ".scoped-element"
253
280
  And I should see /Shared Text/ within ".unrelated-element"
@@ -257,6 +284,11 @@ Feature: Web steps
257
284
  But I should not see /Unique Text/ within ".unrelated-element"
258
285
  And I should not see /http://other-domain.com/ within ".unrelated-element"
259
286
 
287
+ # making sure it works with a within scope correctly when the same element is available outside
288
+ Then I should not see /Outside Table/ within ".table"
289
+ And I should not see /Outside Table/ within a table
290
+ But I should see /Outside Table/
291
+
260
292
 
261
293
  Scenario: /^(.*) within (.*[^:])$/ with a Capybara::Node::Element
262
294
  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: 4.1.1
4
+ version: 4.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tobias Kraze
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-07-07 00:00:00.000000000 Z
11
+ date: 2021-11-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cucumber
@@ -138,8 +138,6 @@ files:
138
138
  - CHANGELOG.md
139
139
  - Gemfile
140
140
  - Gemfile.lock
141
- - Gemfile.ruby245
142
- - Gemfile.ruby245.lock
143
141
  - Gemfile.ruby266
144
142
  - Gemfile.ruby266.lock
145
143
  - Gemfile.ruby300
@@ -167,6 +165,7 @@ files:
167
165
  - lib/spreewald_support/compatibility.rb
168
166
  - lib/spreewald_support/custom_matchers.rb
169
167
  - lib/spreewald_support/driver_info.rb
168
+ - lib/spreewald_support/field_errors.rb
170
169
  - lib/spreewald_support/github.rb
171
170
  - lib/spreewald_support/mail_finder.rb
172
171
  - lib/spreewald_support/mail_to_plaintext_converter.rb
@@ -176,10 +175,14 @@ files:
176
175
  - lib/spreewald_support/unsupported_email_header.rb
177
176
  - lib/spreewald_support/version.rb
178
177
  - lib/spreewald_support/web_steps_helpers.rb
178
+ - lib/steps/follow_the_link.rb
179
+ - lib/steps/show_me_the_mails.rb
179
180
  - spec/spec_helper.rb
180
181
  - spec/spreewald_support/comparision_spec.rb
181
182
  - spec/spreewald_support/mail_to_plaintext_converter_spec.rb
182
183
  - spec/spreewald_support/tolerance_for_selenium_sync_issues_spec.rb
184
+ - spec/steps/follow_the_link_spec.rb
185
+ - spec/steps/show_me_the_mails_spec.rb
183
186
  - spec/support/world.rb
184
187
  - spreewald.gemspec
185
188
  - support/parser.rb
@@ -187,59 +190,6 @@ files:
187
190
  - support/step_definition.rb
188
191
  - support/step_definition_file.rb
189
192
  - support/step_manager.rb
190
- - tests/rails-4_capybara-2/Gemfile
191
- - tests/rails-4_capybara-2/Gemfile.lock
192
- - tests/rails-4_capybara-2/README.rdoc
193
- - tests/rails-4_capybara-2/Rakefile
194
- - tests/rails-4_capybara-2/app
195
- - tests/rails-4_capybara-2/bin/bundle
196
- - tests/rails-4_capybara-2/bin/rails
197
- - tests/rails-4_capybara-2/bin/rake
198
- - tests/rails-4_capybara-2/bin/setup
199
- - tests/rails-4_capybara-2/config.ru
200
- - tests/rails-4_capybara-2/config/application.rb
201
- - tests/rails-4_capybara-2/config/boot.rb
202
- - tests/rails-4_capybara-2/config/cucumber.yml
203
- - tests/rails-4_capybara-2/config/database.yml
204
- - tests/rails-4_capybara-2/config/environment.rb
205
- - tests/rails-4_capybara-2/config/environments/development.rb
206
- - tests/rails-4_capybara-2/config/environments/test.rb
207
- - tests/rails-4_capybara-2/config/initializers/backtrace_silencers.rb
208
- - tests/rails-4_capybara-2/config/initializers/cookies_serializer.rb
209
- - tests/rails-4_capybara-2/config/initializers/filter_parameter_logging.rb
210
- - tests/rails-4_capybara-2/config/initializers/inflections.rb
211
- - tests/rails-4_capybara-2/config/initializers/mime_types.rb
212
- - tests/rails-4_capybara-2/config/initializers/session_store.rb
213
- - tests/rails-4_capybara-2/config/initializers/silence_deprecation_warnings.rb
214
- - tests/rails-4_capybara-2/config/initializers/to_time_preserves_timezone.rb
215
- - tests/rails-4_capybara-2/config/initializers/wrap_parameters.rb
216
- - tests/rails-4_capybara-2/config/locales/en.yml
217
- - tests/rails-4_capybara-2/config/routes.rb
218
- - tests/rails-4_capybara-2/config/secrets.yml
219
- - tests/rails-4_capybara-2/db
220
- - tests/rails-4_capybara-2/features/browser_tab_steps.feature
221
- - tests/rails-4_capybara-2/features/development_steps.feature
222
- - tests/rails-4_capybara-2/features/email_steps.feature
223
- - tests/rails-4_capybara-2/features/iframe_steps.feature
224
- - tests/rails-4_capybara-2/features/overriding.feature
225
- - tests/rails-4_capybara-2/features/session_steps.feature
226
- - tests/rails-4_capybara-2/features/step_definitions/overriding_steps.rb
227
- - tests/rails-4_capybara-2/features/step_definitions/test_steps.rb
228
- - tests/rails-4_capybara-2/features/support/env.rb
229
- - tests/rails-4_capybara-2/features/support/paths.rb
230
- - tests/rails-4_capybara-2/features/support/selectors.rb
231
- - tests/rails-4_capybara-2/features/support/selenium.rb
232
- - tests/rails-4_capybara-2/features/table_steps.feature
233
- - tests/rails-4_capybara-2/features/time_steps.feature
234
- - tests/rails-4_capybara-2/features/web_steps.feature
235
- - tests/rails-4_capybara-2/lib/tasks/cucumber.rake
236
- - tests/rails-4_capybara-2/log/.keep
237
- - tests/rails-4_capybara-2/public/404.html
238
- - tests/rails-4_capybara-2/public/422.html
239
- - tests/rails-4_capybara-2/public/500.html
240
- - tests/rails-4_capybara-2/public/favicon.ico
241
- - tests/rails-4_capybara-2/public/fixture_files
242
- - tests/rails-4_capybara-2/script/cucumber
243
193
  - tests/rails-6_capybara-3/.ruby-version
244
194
  - tests/rails-6_capybara-3/Gemfile
245
195
  - tests/rails-6_capybara-3/Gemfile.lock
@@ -313,7 +263,9 @@ files:
313
263
  - tests/shared/app/views/forms/disabled_elements.html.haml
314
264
  - tests/shared/app/views/forms/form1.html.haml
315
265
  - tests/shared/app/views/forms/form2.html.haml
316
- - tests/shared/app/views/forms/invalid_form.html.haml
266
+ - tests/shared/app/views/forms/invalid_bootstrap3_form.html.haml
267
+ - tests/shared/app/views/forms/invalid_bootstrap4_form.html.haml
268
+ - tests/shared/app/views/forms/invalid_rails_form.html.haml
317
269
  - tests/shared/app/views/forms/select_fields.html.haml
318
270
  - tests/shared/app/views/iframes/iframe_1_content.haml
319
271
  - tests/shared/app/views/iframes/iframe_2_content.haml
@@ -344,6 +296,7 @@ files:
344
296
  - tests/shared/app/views/static_pages/session_1.haml
345
297
  - tests/shared/app/views/static_pages/session_2.haml
346
298
  - tests/shared/app/views/static_pages/session_3.haml
299
+ - tests/shared/app/views/static_pages/should_see.haml
347
300
  - tests/shared/app/views/static_pages/tab_1.haml
348
301
  - tests/shared/app/views/static_pages/tab_2.haml
349
302
  - tests/shared/app/views/static_pages/tab_3.haml
@@ -400,59 +353,6 @@ signing_key:
400
353
  specification_version: 4
401
354
  summary: Collection of useful cucumber steps.
402
355
  test_files:
403
- - tests/rails-4_capybara-2/Gemfile
404
- - tests/rails-4_capybara-2/Gemfile.lock
405
- - tests/rails-4_capybara-2/README.rdoc
406
- - tests/rails-4_capybara-2/Rakefile
407
- - tests/rails-4_capybara-2/app
408
- - tests/rails-4_capybara-2/bin/bundle
409
- - tests/rails-4_capybara-2/bin/rails
410
- - tests/rails-4_capybara-2/bin/rake
411
- - tests/rails-4_capybara-2/bin/setup
412
- - tests/rails-4_capybara-2/config.ru
413
- - tests/rails-4_capybara-2/config/application.rb
414
- - tests/rails-4_capybara-2/config/boot.rb
415
- - tests/rails-4_capybara-2/config/cucumber.yml
416
- - tests/rails-4_capybara-2/config/database.yml
417
- - tests/rails-4_capybara-2/config/environment.rb
418
- - tests/rails-4_capybara-2/config/environments/development.rb
419
- - tests/rails-4_capybara-2/config/environments/test.rb
420
- - tests/rails-4_capybara-2/config/initializers/backtrace_silencers.rb
421
- - tests/rails-4_capybara-2/config/initializers/cookies_serializer.rb
422
- - tests/rails-4_capybara-2/config/initializers/filter_parameter_logging.rb
423
- - tests/rails-4_capybara-2/config/initializers/inflections.rb
424
- - tests/rails-4_capybara-2/config/initializers/mime_types.rb
425
- - tests/rails-4_capybara-2/config/initializers/session_store.rb
426
- - tests/rails-4_capybara-2/config/initializers/silence_deprecation_warnings.rb
427
- - tests/rails-4_capybara-2/config/initializers/to_time_preserves_timezone.rb
428
- - tests/rails-4_capybara-2/config/initializers/wrap_parameters.rb
429
- - tests/rails-4_capybara-2/config/locales/en.yml
430
- - tests/rails-4_capybara-2/config/routes.rb
431
- - tests/rails-4_capybara-2/config/secrets.yml
432
- - tests/rails-4_capybara-2/db
433
- - tests/rails-4_capybara-2/features/browser_tab_steps.feature
434
- - tests/rails-4_capybara-2/features/development_steps.feature
435
- - tests/rails-4_capybara-2/features/email_steps.feature
436
- - tests/rails-4_capybara-2/features/iframe_steps.feature
437
- - tests/rails-4_capybara-2/features/overriding.feature
438
- - tests/rails-4_capybara-2/features/session_steps.feature
439
- - tests/rails-4_capybara-2/features/step_definitions/overriding_steps.rb
440
- - tests/rails-4_capybara-2/features/step_definitions/test_steps.rb
441
- - tests/rails-4_capybara-2/features/support/env.rb
442
- - tests/rails-4_capybara-2/features/support/paths.rb
443
- - tests/rails-4_capybara-2/features/support/selectors.rb
444
- - tests/rails-4_capybara-2/features/support/selenium.rb
445
- - tests/rails-4_capybara-2/features/table_steps.feature
446
- - tests/rails-4_capybara-2/features/time_steps.feature
447
- - tests/rails-4_capybara-2/features/web_steps.feature
448
- - tests/rails-4_capybara-2/lib/tasks/cucumber.rake
449
- - tests/rails-4_capybara-2/log/.keep
450
- - tests/rails-4_capybara-2/public/404.html
451
- - tests/rails-4_capybara-2/public/422.html
452
- - tests/rails-4_capybara-2/public/500.html
453
- - tests/rails-4_capybara-2/public/favicon.ico
454
- - tests/rails-4_capybara-2/public/fixture_files
455
- - tests/rails-4_capybara-2/script/cucumber
456
356
  - tests/rails-6_capybara-3/.ruby-version
457
357
  - tests/rails-6_capybara-3/Gemfile
458
358
  - tests/rails-6_capybara-3/Gemfile.lock
@@ -526,7 +426,9 @@ test_files:
526
426
  - tests/shared/app/views/forms/disabled_elements.html.haml
527
427
  - tests/shared/app/views/forms/form1.html.haml
528
428
  - tests/shared/app/views/forms/form2.html.haml
529
- - tests/shared/app/views/forms/invalid_form.html.haml
429
+ - tests/shared/app/views/forms/invalid_bootstrap3_form.html.haml
430
+ - tests/shared/app/views/forms/invalid_bootstrap4_form.html.haml
431
+ - tests/shared/app/views/forms/invalid_rails_form.html.haml
530
432
  - tests/shared/app/views/forms/select_fields.html.haml
531
433
  - tests/shared/app/views/iframes/iframe_1_content.haml
532
434
  - tests/shared/app/views/iframes/iframe_2_content.haml
@@ -557,6 +459,7 @@ test_files:
557
459
  - tests/shared/app/views/static_pages/session_1.haml
558
460
  - tests/shared/app/views/static_pages/session_2.haml
559
461
  - tests/shared/app/views/static_pages/session_3.haml
462
+ - tests/shared/app/views/static_pages/should_see.haml
560
463
  - tests/shared/app/views/static_pages/tab_1.haml
561
464
  - tests/shared/app/views/static_pages/tab_2.haml
562
465
  - tests/shared/app/views/static_pages/tab_3.haml
data/Gemfile.ruby245 DELETED
@@ -1,10 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- gem 'rake'
4
- gem 'rspec'
5
- gem 'cucumber'
6
- gem 'aruba'
7
-
8
- gem 'gemika'
9
- gem 'mail'
10
- gem 'nokogiri'
data/Gemfile.ruby245.lock DELETED
@@ -1,73 +0,0 @@
1
- GEM
2
- remote: https://rubygems.org/
3
- specs:
4
- aruba (0.14.8)
5
- childprocess (>= 0.6.3, < 1.1.0)
6
- contracts (~> 0.9)
7
- cucumber (>= 1.3.19)
8
- ffi (~> 1.9)
9
- rspec-expectations (>= 2.99)
10
- thor (~> 0.19)
11
- backports (3.12.0)
12
- builder (3.2.3)
13
- childprocess (1.0.1)
14
- rake (< 13.0)
15
- contracts (0.16.0)
16
- cucumber (3.1.2)
17
- builder (>= 2.1.2)
18
- cucumber-core (~> 3.2.0)
19
- cucumber-expressions (~> 6.0.1)
20
- cucumber-wire (~> 0.0.1)
21
- diff-lcs (~> 1.3)
22
- gherkin (~> 5.1.0)
23
- multi_json (>= 1.7.5, < 2.0)
24
- multi_test (>= 0.1.2)
25
- cucumber-core (3.2.1)
26
- backports (>= 3.8.0)
27
- cucumber-tag_expressions (~> 1.1.0)
28
- gherkin (~> 5.0)
29
- cucumber-expressions (6.0.1)
30
- cucumber-tag_expressions (1.1.1)
31
- cucumber-wire (0.0.1)
32
- diff-lcs (1.3)
33
- ffi (1.10.0)
34
- gemika (0.5.0)
35
- gherkin (5.1.0)
36
- mail (2.7.1)
37
- mini_mime (>= 0.1.1)
38
- mini_mime (1.0.1)
39
- mini_portile2 (2.4.0)
40
- multi_json (1.13.1)
41
- multi_test (0.1.2)
42
- nokogiri (1.10.10)
43
- mini_portile2 (~> 2.4.0)
44
- rake (12.3.2)
45
- rspec (3.8.0)
46
- rspec-core (~> 3.8.0)
47
- rspec-expectations (~> 3.8.0)
48
- rspec-mocks (~> 3.8.0)
49
- rspec-core (3.8.0)
50
- rspec-support (~> 3.8.0)
51
- rspec-expectations (3.8.2)
52
- diff-lcs (>= 1.2.0, < 2.0)
53
- rspec-support (~> 3.8.0)
54
- rspec-mocks (3.8.0)
55
- diff-lcs (>= 1.2.0, < 2.0)
56
- rspec-support (~> 3.8.0)
57
- rspec-support (3.8.0)
58
- thor (0.20.3)
59
-
60
- PLATFORMS
61
- ruby
62
-
63
- DEPENDENCIES
64
- aruba
65
- cucumber
66
- gemika
67
- mail
68
- nokogiri
69
- rake
70
- rspec
71
-
72
- BUNDLED WITH
73
- 2.2.4
@@ -1,24 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
-
4
- gem 'rails', '<5'
5
- gem 'sqlite3'
6
- gem 'haml-rails'
7
- gem 'gemika'
8
-
9
-
10
- group :development, :test do
11
- gem 'byebug'
12
- gem 'pry'
13
- end
14
-
15
- group :test do
16
- gem 'database_cleaner'
17
- gem 'capybara', '<3'
18
- gem 'capybara-screenshot'
19
- gem 'cucumber-rails', require: false
20
- gem 'cucumber'
21
- gem 'selenium-webdriver'
22
- gem 'rspec-rails'
23
- gem 'spreewald', :path => '../..'
24
- end
@@ -1,230 +0,0 @@
1
- PATH
2
- remote: ../..
3
- specs:
4
- spreewald (4.1.1)
5
- cucumber
6
- cucumber_priority (>= 0.3.0)
7
- rspec (>= 2.13.0)
8
-
9
- GEM
10
- remote: https://rubygems.org/
11
- specs:
12
- actionmailer (4.2.11)
13
- actionpack (= 4.2.11)
14
- actionview (= 4.2.11)
15
- activejob (= 4.2.11)
16
- mail (~> 2.5, >= 2.5.4)
17
- rails-dom-testing (~> 1.0, >= 1.0.5)
18
- actionpack (4.2.11)
19
- actionview (= 4.2.11)
20
- activesupport (= 4.2.11)
21
- rack (~> 1.6)
22
- rack-test (~> 0.6.2)
23
- rails-dom-testing (~> 1.0, >= 1.0.5)
24
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
25
- actionview (4.2.11)
26
- activesupport (= 4.2.11)
27
- builder (~> 3.1)
28
- erubis (~> 2.7.0)
29
- rails-dom-testing (~> 1.0, >= 1.0.5)
30
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
31
- activejob (4.2.11)
32
- activesupport (= 4.2.11)
33
- globalid (>= 0.3.0)
34
- activemodel (4.2.11)
35
- activesupport (= 4.2.11)
36
- builder (~> 3.1)
37
- activerecord (4.2.11)
38
- activemodel (= 4.2.11)
39
- activesupport (= 4.2.11)
40
- arel (~> 6.0)
41
- activesupport (4.2.11)
42
- i18n (~> 0.7)
43
- minitest (~> 5.1)
44
- thread_safe (~> 0.3, >= 0.3.4)
45
- tzinfo (~> 1.1)
46
- addressable (2.7.0)
47
- public_suffix (>= 2.0.2, < 5.0)
48
- arel (6.0.4)
49
- backports (3.12.0)
50
- builder (3.2.3)
51
- byebug (10.0.2)
52
- capybara (2.18.0)
53
- addressable
54
- mini_mime (>= 0.1.3)
55
- nokogiri (>= 1.3.3)
56
- rack (>= 1.0.0)
57
- rack-test (>= 0.5.4)
58
- xpath (>= 2.0, < 4.0)
59
- capybara-screenshot (1.0.22)
60
- capybara (>= 1.0, < 4)
61
- launchy
62
- childprocess (0.9.0)
63
- ffi (~> 1.0, >= 1.0.11)
64
- coderay (1.1.2)
65
- concurrent-ruby (1.1.4)
66
- crass (1.0.4)
67
- cucumber (3.1.2)
68
- builder (>= 2.1.2)
69
- cucumber-core (~> 3.2.0)
70
- cucumber-expressions (~> 6.0.1)
71
- cucumber-wire (~> 0.0.1)
72
- diff-lcs (~> 1.3)
73
- gherkin (~> 5.1.0)
74
- multi_json (>= 1.7.5, < 2.0)
75
- multi_test (>= 0.1.2)
76
- cucumber-core (3.2.1)
77
- backports (>= 3.8.0)
78
- cucumber-tag_expressions (~> 1.1.0)
79
- gherkin (~> 5.0)
80
- cucumber-expressions (6.0.1)
81
- cucumber-rails (1.6.0)
82
- capybara (>= 1.1.2, < 4)
83
- cucumber (>= 3.0.2, < 4)
84
- mime-types (>= 1.17, < 4)
85
- nokogiri (~> 1.8)
86
- railties (>= 4, < 6)
87
- cucumber-tag_expressions (1.1.1)
88
- cucumber-wire (0.0.1)
89
- cucumber_priority (0.3.2)
90
- cucumber
91
- database_cleaner (1.7.0)
92
- diff-lcs (1.3)
93
- erubis (2.7.0)
94
- ffi (1.10.0)
95
- gemika (0.5.0)
96
- gherkin (5.1.0)
97
- globalid (0.4.2)
98
- activesupport (>= 4.2.0)
99
- haml (5.0.4)
100
- temple (>= 0.8.0)
101
- tilt
102
- haml-rails (1.0.0)
103
- actionpack (>= 4.0.1)
104
- activesupport (>= 4.0.1)
105
- haml (>= 4.0.6, < 6.0)
106
- html2haml (>= 1.0.1)
107
- railties (>= 4.0.1)
108
- html2haml (2.2.0)
109
- erubis (~> 2.7.0)
110
- haml (>= 4.0, < 6)
111
- nokogiri (>= 1.6.0)
112
- ruby_parser (~> 3.5)
113
- i18n (0.9.5)
114
- concurrent-ruby (~> 1.0)
115
- launchy (2.4.3)
116
- addressable (~> 2.3)
117
- loofah (2.2.3)
118
- crass (~> 1.0.2)
119
- nokogiri (>= 1.5.9)
120
- mail (2.7.1)
121
- mini_mime (>= 0.1.1)
122
- method_source (0.9.2)
123
- mime-types (3.2.2)
124
- mime-types-data (~> 3.2015)
125
- mime-types-data (3.2018.0812)
126
- mini_mime (1.0.2)
127
- mini_portile2 (2.4.0)
128
- minitest (5.11.3)
129
- multi_json (1.13.1)
130
- multi_test (0.1.2)
131
- nokogiri (1.10.10)
132
- mini_portile2 (~> 2.4.0)
133
- pry (0.12.2)
134
- coderay (~> 1.1.0)
135
- method_source (~> 0.9.0)
136
- public_suffix (4.0.6)
137
- rack (1.6.13)
138
- rack-test (0.6.3)
139
- rack (>= 1.0)
140
- rails (4.2.11)
141
- actionmailer (= 4.2.11)
142
- actionpack (= 4.2.11)
143
- actionview (= 4.2.11)
144
- activejob (= 4.2.11)
145
- activemodel (= 4.2.11)
146
- activerecord (= 4.2.11)
147
- activesupport (= 4.2.11)
148
- bundler (>= 1.3.0, < 2.0)
149
- railties (= 4.2.11)
150
- sprockets-rails
151
- rails-deprecated_sanitizer (1.0.3)
152
- activesupport (>= 4.2.0.alpha)
153
- rails-dom-testing (1.0.9)
154
- activesupport (>= 4.2.0, < 5.0)
155
- nokogiri (~> 1.6)
156
- rails-deprecated_sanitizer (>= 1.0.1)
157
- rails-html-sanitizer (1.0.4)
158
- loofah (~> 2.2, >= 2.2.2)
159
- railties (4.2.11)
160
- actionpack (= 4.2.11)
161
- activesupport (= 4.2.11)
162
- rake (>= 0.8.7)
163
- thor (>= 0.18.1, < 2.0)
164
- rake (12.3.2)
165
- rspec (3.8.0)
166
- rspec-core (~> 3.8.0)
167
- rspec-expectations (~> 3.8.0)
168
- rspec-mocks (~> 3.8.0)
169
- rspec-core (3.8.0)
170
- rspec-support (~> 3.8.0)
171
- rspec-expectations (3.8.2)
172
- diff-lcs (>= 1.2.0, < 2.0)
173
- rspec-support (~> 3.8.0)
174
- rspec-mocks (3.8.0)
175
- diff-lcs (>= 1.2.0, < 2.0)
176
- rspec-support (~> 3.8.0)
177
- rspec-rails (3.8.2)
178
- actionpack (>= 3.0)
179
- activesupport (>= 3.0)
180
- railties (>= 3.0)
181
- rspec-core (~> 3.8.0)
182
- rspec-expectations (~> 3.8.0)
183
- rspec-mocks (~> 3.8.0)
184
- rspec-support (~> 3.8.0)
185
- rspec-support (3.8.0)
186
- ruby_parser (3.12.0)
187
- sexp_processor (~> 4.9)
188
- rubyzip (1.3.0)
189
- selenium-webdriver (3.141.0)
190
- childprocess (~> 0.5)
191
- rubyzip (~> 1.2, >= 1.2.2)
192
- sexp_processor (4.11.0)
193
- sprockets (3.7.2)
194
- concurrent-ruby (~> 1.0)
195
- rack (> 1, < 3)
196
- sprockets-rails (3.2.1)
197
- actionpack (>= 4.0)
198
- activesupport (>= 4.0)
199
- sprockets (>= 3.0.0)
200
- sqlite3 (1.3.13)
201
- temple (0.8.0)
202
- thor (0.20.3)
203
- thread_safe (0.3.6)
204
- tilt (2.0.9)
205
- tzinfo (1.2.5)
206
- thread_safe (~> 0.1)
207
- xpath (3.2.0)
208
- nokogiri (~> 1.8)
209
-
210
- PLATFORMS
211
- ruby
212
-
213
- DEPENDENCIES
214
- byebug
215
- capybara (< 3)
216
- capybara-screenshot
217
- cucumber
218
- cucumber-rails
219
- database_cleaner
220
- gemika
221
- haml-rails
222
- pry
223
- rails (< 5)
224
- rspec-rails
225
- selenium-webdriver
226
- spreewald!
227
- sqlite3
228
-
229
- BUNDLED WITH
230
- 2.2.4