spreewald 4.2.3 → 4.3.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +25 -0
- data/Gemfile.lock +3 -3
- data/Gemfile.ruby266.lock +59 -42
- data/Gemfile.ruby300.lock +37 -53
- data/README.md +9 -18
- data/Rakefile +4 -2
- data/examples/paths.rb +7 -0
- data/features/binary.feature +12 -8
- data/lib/spreewald/web_steps.rb +57 -54
- data/lib/spreewald_support/field_errors.rb +56 -0
- data/lib/spreewald_support/version.rb +1 -1
- data/support/step_definition.rb +11 -0
- data/support/step_manager.rb +1 -1
- data/tests/rails-6_capybara-3/Gemfile.lock +1 -1
- data/tests/rails-6_capybara-3/features/step_definitions/field_error_steps.rb +12 -0
- data/tests/shared/app/controllers/forms_controller.rb +11 -2
- data/tests/shared/app/controllers/static_pages_controller.rb +3 -0
- data/tests/shared/app/views/forms/invalid_bootstrap3_form.html.haml +16 -0
- data/tests/shared/app/views/forms/invalid_bootstrap4_form.html.haml +18 -0
- data/tests/shared/app/views/forms/invalid_custom_form.html.haml +19 -0
- data/tests/shared/app/views/forms/{invalid_form.html.haml → invalid_rails_form.html.haml} +0 -0
- data/tests/shared/app/views/static_pages/should_see.haml +7 -0
- data/tests/shared/config/routes.rb +5 -1
- data/tests/shared/features/shared/web_steps.feature +72 -15
- metadata +15 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8841cf880bda6d58ed1632050b3c3a28292e476acb6f961922beaa3f842498a3
|
4
|
+
data.tar.gz: 830f0798c36a968717bf946ba987372e78df20c2a1ce4a5e4ec570733256c0b1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8f4afbf809ee2f17478eea159da1d1659a72e62d45b39bc8e221c4bb0fc94ed5fcad15ca17f4557e3163b2f9d6aa182041ab6aa4f13e1db72d290307a5724e82
|
7
|
+
data.tar.gz: 88b21029149764ec1023134a50e99ced4a51b8fe1e8f4a96ff1681cc4809013d52dcc2e995eba79e315b9626fe36b16bb65bd8da5ca100bbf3213b0ece67932a
|
data/CHANGELOG.md
CHANGED
@@ -3,6 +3,31 @@ All notable changes to this project will be documented in this file.
|
|
3
3
|
|
4
4
|
This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
5
5
|
|
6
|
+
## 4.3.5
|
7
|
+
- Fix deprecation warning for using keyword arguments as last argument when running with ruby 2.7
|
8
|
+
|
9
|
+
## 4.3.4
|
10
|
+
- Fix "undefined method `build_rb_world_factory` for nil:NilClass" error when running tests on a real project'
|
11
|
+
- The field error class couldn't be required in certain circumstances and so the specs failed
|
12
|
+
|
13
|
+
## 4.3.3
|
14
|
+
- Fixes that the `Spreewald.field_error_class` configuration
|
15
|
+
did not find the correct elements
|
16
|
+
|
17
|
+
## 4.3.2
|
18
|
+
- Added built-in support for Rails and Bootstrap (3-5) error classes to the steps
|
19
|
+
- `The ... field should have the error ...`
|
20
|
+
- `The ... field should have an error`
|
21
|
+
- Added the possibility to specify custom error classes and message selectors for these steps
|
22
|
+
using `Spreewald.field_error_class` and `Spreewald.error_message_xpath_selector` in your configuration.
|
23
|
+
|
24
|
+
- We had separate steps for e.g. `I should see ...` and `I should not see ...`. These were merged now:
|
25
|
+
- `I should see "..."` + `I should not see "..."` => `I should( not)? see "..."`
|
26
|
+
- `I should see /.../` + `I should not see /.../` => `I should( not)? see /.../`
|
27
|
+
- `I should see '...'` + `I should not see '...'` => `I should( not)? see '...'`
|
28
|
+
- Optional negation was made more consistent. The steps use `"( not)? "` now.
|
29
|
+
- The search via `spreewald some query here` includes steps with optional negation now.
|
30
|
+
|
6
31
|
## 4.2.2
|
7
32
|
- Fixes the "Show me the email" step (#171)
|
8
33
|
- Fixes the "I follow the link in the email" step. (#172, #173)
|
data/Gemfile.lock
CHANGED
data/Gemfile.ruby266.lock
CHANGED
@@ -1,60 +1,77 @@
|
|
1
1
|
GEM
|
2
2
|
remote: https://rubygems.org/
|
3
3
|
specs:
|
4
|
-
aruba (
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
4
|
+
aruba (2.0.0)
|
5
|
+
bundler (>= 1.17, < 3.0)
|
6
|
+
childprocess (>= 2.0, < 5.0)
|
7
|
+
contracts (>= 0.16.0, < 0.18.0)
|
8
|
+
cucumber (>= 4.0, < 8.0)
|
9
9
|
rspec-expectations (~> 3.4)
|
10
10
|
thor (~> 1.0)
|
11
|
-
backports (3.17.0)
|
12
11
|
builder (3.2.4)
|
13
|
-
childprocess (
|
12
|
+
childprocess (4.0.0)
|
14
13
|
contracts (0.16.0)
|
15
|
-
cucumber (
|
16
|
-
builder (>= 2.
|
17
|
-
cucumber-core (~>
|
18
|
-
cucumber-
|
19
|
-
cucumber-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
cucumber-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
14
|
+
cucumber (7.1.0)
|
15
|
+
builder (~> 3.2, >= 3.2.4)
|
16
|
+
cucumber-core (~> 10.1, >= 10.1.0)
|
17
|
+
cucumber-create-meta (~> 6.0, >= 6.0.1)
|
18
|
+
cucumber-cucumber-expressions (~> 14.0, >= 14.0.0)
|
19
|
+
cucumber-gherkin (~> 22.0, >= 22.0.0)
|
20
|
+
cucumber-html-formatter (~> 17.0, >= 17.0.0)
|
21
|
+
cucumber-messages (~> 17.1, >= 17.1.1)
|
22
|
+
cucumber-wire (~> 6.2, >= 6.2.0)
|
23
|
+
diff-lcs (~> 1.4, >= 1.4.4)
|
24
|
+
mime-types (~> 3.3, >= 3.3.1)
|
25
|
+
multi_test (~> 0.1, >= 0.1.2)
|
26
|
+
sys-uname (~> 1.2, >= 1.2.2)
|
27
|
+
cucumber-core (10.1.0)
|
28
|
+
cucumber-gherkin (~> 22.0, >= 22.0.0)
|
29
|
+
cucumber-messages (~> 17.1, >= 17.1.1)
|
30
|
+
cucumber-tag-expressions (~> 4.0, >= 4.0.2)
|
31
|
+
cucumber-create-meta (6.0.4)
|
32
|
+
cucumber-messages (~> 17.1, >= 17.1.1)
|
33
|
+
sys-uname (~> 1.2, >= 1.2.2)
|
34
|
+
cucumber-cucumber-expressions (14.0.0)
|
35
|
+
cucumber-gherkin (22.0.0)
|
36
|
+
cucumber-messages (~> 17.1, >= 17.1.1)
|
37
|
+
cucumber-html-formatter (17.0.0)
|
38
|
+
cucumber-messages (~> 17.1, >= 17.1.0)
|
39
|
+
cucumber-messages (17.1.1)
|
40
|
+
cucumber-tag-expressions (4.1.0)
|
41
|
+
cucumber-wire (6.2.0)
|
42
|
+
cucumber-core (~> 10.1, >= 10.1.0)
|
43
|
+
cucumber-cucumber-expressions (~> 14.0, >= 14.0.0)
|
44
|
+
cucumber-messages (~> 17.1, >= 17.1.1)
|
45
|
+
diff-lcs (1.4.4)
|
46
|
+
ffi (1.15.4)
|
47
|
+
gemika (0.6.1)
|
35
48
|
mail (2.7.1)
|
36
49
|
mini_mime (>= 0.1.1)
|
37
|
-
|
38
|
-
|
50
|
+
mime-types (3.4.1)
|
51
|
+
mime-types-data (~> 3.2015)
|
52
|
+
mime-types-data (3.2021.1115)
|
53
|
+
mini_mime (1.1.2)
|
39
54
|
multi_test (0.1.2)
|
40
55
|
nokogiri (1.11.1-x86_64-linux)
|
41
56
|
racc (~> 1.4)
|
42
57
|
racc (1.5.2)
|
43
58
|
rake (13.0.3)
|
44
|
-
rspec (3.
|
45
|
-
rspec-core (~> 3.
|
46
|
-
rspec-expectations (~> 3.
|
47
|
-
rspec-mocks (~> 3.
|
48
|
-
rspec-core (3.
|
49
|
-
rspec-support (~> 3.
|
50
|
-
rspec-expectations (3.
|
59
|
+
rspec (3.10.0)
|
60
|
+
rspec-core (~> 3.10.0)
|
61
|
+
rspec-expectations (~> 3.10.0)
|
62
|
+
rspec-mocks (~> 3.10.0)
|
63
|
+
rspec-core (3.10.1)
|
64
|
+
rspec-support (~> 3.10.0)
|
65
|
+
rspec-expectations (3.10.1)
|
51
66
|
diff-lcs (>= 1.2.0, < 2.0)
|
52
|
-
rspec-support (~> 3.
|
53
|
-
rspec-mocks (3.
|
67
|
+
rspec-support (~> 3.10.0)
|
68
|
+
rspec-mocks (3.10.2)
|
54
69
|
diff-lcs (>= 1.2.0, < 2.0)
|
55
|
-
rspec-support (~> 3.
|
56
|
-
rspec-support (3.
|
57
|
-
|
70
|
+
rspec-support (~> 3.10.0)
|
71
|
+
rspec-support (3.10.2)
|
72
|
+
sys-uname (1.2.2)
|
73
|
+
ffi (~> 1.1)
|
74
|
+
thor (1.1.0)
|
58
75
|
|
59
76
|
PLATFORMS
|
60
77
|
ruby
|
@@ -72,4 +89,4 @@ RUBY VERSION
|
|
72
89
|
ruby 2.6.6p146
|
73
90
|
|
74
91
|
BUNDLED WITH
|
75
|
-
2.2.
|
92
|
+
2.2.17
|
data/Gemfile.ruby300.lock
CHANGED
@@ -1,71 +1,59 @@
|
|
1
1
|
GEM
|
2
2
|
remote: https://rubygems.org/
|
3
3
|
specs:
|
4
|
-
|
5
|
-
|
6
|
-
i18n (>= 1.6, < 2)
|
7
|
-
minitest (>= 5.1)
|
8
|
-
tzinfo (~> 2.0)
|
9
|
-
zeitwerk (~> 2.3)
|
10
|
-
aruba (1.0.4)
|
4
|
+
aruba (2.0.0)
|
5
|
+
bundler (>= 1.17, < 3.0)
|
11
6
|
childprocess (>= 2.0, < 5.0)
|
12
|
-
contracts (
|
13
|
-
cucumber (>=
|
7
|
+
contracts (>= 0.16.0, < 0.18.0)
|
8
|
+
cucumber (>= 4.0, < 8.0)
|
14
9
|
rspec-expectations (~> 3.4)
|
15
10
|
thor (~> 1.0)
|
16
11
|
builder (3.2.4)
|
17
12
|
childprocess (4.0.0)
|
18
|
-
concurrent-ruby (1.1.8)
|
19
13
|
contracts (0.16.0)
|
20
|
-
cucumber (
|
14
|
+
cucumber (7.1.0)
|
21
15
|
builder (~> 3.2, >= 3.2.4)
|
22
|
-
cucumber-core (~>
|
23
|
-
cucumber-create-meta (~>
|
24
|
-
cucumber-cucumber-expressions (~>
|
25
|
-
cucumber-gherkin (~>
|
26
|
-
cucumber-html-formatter (~>
|
27
|
-
cucumber-messages (~>
|
28
|
-
cucumber-wire (~>
|
16
|
+
cucumber-core (~> 10.1, >= 10.1.0)
|
17
|
+
cucumber-create-meta (~> 6.0, >= 6.0.1)
|
18
|
+
cucumber-cucumber-expressions (~> 14.0, >= 14.0.0)
|
19
|
+
cucumber-gherkin (~> 22.0, >= 22.0.0)
|
20
|
+
cucumber-html-formatter (~> 17.0, >= 17.0.0)
|
21
|
+
cucumber-messages (~> 17.1, >= 17.1.1)
|
22
|
+
cucumber-wire (~> 6.2, >= 6.2.0)
|
29
23
|
diff-lcs (~> 1.4, >= 1.4.4)
|
24
|
+
mime-types (~> 3.3, >= 3.3.1)
|
30
25
|
multi_test (~> 0.1, >= 0.1.2)
|
31
|
-
sys-uname (~> 1.2, >= 1.2.
|
32
|
-
cucumber-core (
|
33
|
-
cucumber-gherkin (~>
|
34
|
-
cucumber-messages (~>
|
35
|
-
cucumber-tag-expressions (~>
|
36
|
-
cucumber-create-meta (
|
37
|
-
cucumber-messages (~>
|
38
|
-
sys-uname (~> 1.2, >= 1.2.
|
39
|
-
cucumber-cucumber-expressions (
|
40
|
-
cucumber-gherkin (
|
41
|
-
cucumber-messages (~>
|
42
|
-
cucumber-html-formatter (
|
43
|
-
cucumber-messages (~>
|
44
|
-
cucumber-messages (
|
45
|
-
|
46
|
-
cucumber-
|
47
|
-
|
48
|
-
cucumber-
|
49
|
-
cucumber-
|
50
|
-
cucumber-messages (~> 13.0, >= 13.0.1)
|
26
|
+
sys-uname (~> 1.2, >= 1.2.2)
|
27
|
+
cucumber-core (10.1.0)
|
28
|
+
cucumber-gherkin (~> 22.0, >= 22.0.0)
|
29
|
+
cucumber-messages (~> 17.1, >= 17.1.1)
|
30
|
+
cucumber-tag-expressions (~> 4.0, >= 4.0.2)
|
31
|
+
cucumber-create-meta (6.0.4)
|
32
|
+
cucumber-messages (~> 17.1, >= 17.1.1)
|
33
|
+
sys-uname (~> 1.2, >= 1.2.2)
|
34
|
+
cucumber-cucumber-expressions (14.0.0)
|
35
|
+
cucumber-gherkin (22.0.0)
|
36
|
+
cucumber-messages (~> 17.1, >= 17.1.1)
|
37
|
+
cucumber-html-formatter (17.0.0)
|
38
|
+
cucumber-messages (~> 17.1, >= 17.1.0)
|
39
|
+
cucumber-messages (17.1.1)
|
40
|
+
cucumber-tag-expressions (4.1.0)
|
41
|
+
cucumber-wire (6.2.0)
|
42
|
+
cucumber-core (~> 10.1, >= 10.1.0)
|
43
|
+
cucumber-cucumber-expressions (~> 14.0, >= 14.0.0)
|
44
|
+
cucumber-messages (~> 17.1, >= 17.1.1)
|
51
45
|
diff-lcs (1.4.4)
|
52
|
-
ffi (1.15.
|
53
|
-
gemika (0.
|
54
|
-
i18n (1.8.10)
|
55
|
-
concurrent-ruby (~> 1.0)
|
46
|
+
ffi (1.15.4)
|
47
|
+
gemika (0.6.1)
|
56
48
|
mail (2.7.1)
|
57
49
|
mini_mime (>= 0.1.1)
|
58
|
-
|
50
|
+
mime-types (3.4.1)
|
51
|
+
mime-types-data (~> 3.2015)
|
52
|
+
mime-types-data (3.2021.1115)
|
59
53
|
mini_mime (1.0.3)
|
60
|
-
minitest (5.14.4)
|
61
54
|
multi_test (0.1.2)
|
62
55
|
nokogiri (1.11.2-x86_64-linux)
|
63
56
|
racc (~> 1.4)
|
64
|
-
protobuf-cucumber (3.10.8)
|
65
|
-
activesupport (>= 3.2)
|
66
|
-
middleware
|
67
|
-
thor
|
68
|
-
thread_safe
|
69
57
|
racc (1.5.2)
|
70
58
|
rake (13.0.3)
|
71
59
|
rspec (3.10.0)
|
@@ -84,10 +72,6 @@ GEM
|
|
84
72
|
sys-uname (1.2.2)
|
85
73
|
ffi (~> 1.1)
|
86
74
|
thor (1.1.0)
|
87
|
-
thread_safe (0.3.6)
|
88
|
-
tzinfo (2.0.4)
|
89
|
-
concurrent-ruby (~> 1.0)
|
90
|
-
zeitwerk (2.4.2)
|
91
75
|
|
92
76
|
PLATFORMS
|
93
77
|
x86_64-linux
|
data/README.md
CHANGED
@@ -298,7 +298,7 @@ the step definitions.
|
|
298
298
|
* **When I switch back to the whole page**
|
299
299
|
|
300
300
|
This step can be used to switch back to the whole page if you switched
|
301
|
-
to operating inside an iframe before (step `I switch to the ... iframe`)
|
301
|
+
to operating inside an iframe before (step `I switch to the ... iframe`).
|
302
302
|
|
303
303
|
Please note: This step is only available for Capybara >= 3.
|
304
304
|
|
@@ -460,26 +460,20 @@ deprecation notice. Decide for yourself whether you want to use them:
|
|
460
460
|
Attach a file to a file upload form field
|
461
461
|
|
462
462
|
|
463
|
-
* **Then I should see "..."**
|
463
|
+
* **Then I should( not)? see "..."**
|
464
464
|
|
465
465
|
Checks that some text appears on the page
|
466
466
|
|
467
467
|
Note that this does not detect if the text might be hidden via CSS
|
468
468
|
|
469
469
|
|
470
|
-
* **Then I should see /.../**
|
470
|
+
* **Then I should( not)? see /.../**
|
471
471
|
|
472
472
|
Checks that a regexp appears on the page
|
473
473
|
|
474
474
|
Note that this does not detect if the text might be hidden via CSS
|
475
475
|
|
476
476
|
|
477
|
-
* **Then I should not see "..."**
|
478
|
-
|
479
|
-
|
480
|
-
* **Then I should not see /.../**
|
481
|
-
|
482
|
-
|
483
477
|
* **Then I should( not)? see a field "..."**
|
484
478
|
|
485
479
|
Checks for the existance of an input field (given its id or label)
|
@@ -494,26 +488,23 @@ deprecation notice. Decide for yourself whether you want to use them:
|
|
494
488
|
See [here](https://makandracards.com/makandra/1225-test-that-a-number-or-money-amount-is-shown-with-cucumber) for details
|
495
489
|
|
496
490
|
|
497
|
-
* **Then I should see '...'**
|
491
|
+
* **Then I should( not)? see '...'**
|
498
492
|
|
499
493
|
Like `Then I should see`, but with single instead of double quotes. In case
|
500
494
|
the expected string contains quotes as well.
|
501
495
|
|
502
496
|
|
503
|
-
* **Then I should see "..." in the HTML**
|
497
|
+
* **Then I should( not)? see "..." in the HTML**
|
504
498
|
|
505
499
|
Check that the raw HTML contains a string
|
506
500
|
|
507
501
|
|
508
|
-
* **Then I should not see "..." in the HTML**
|
509
|
-
|
510
|
-
|
511
502
|
* **Then I should see an error**
|
512
503
|
|
513
504
|
Checks that status code is 400..599
|
514
505
|
|
515
506
|
|
516
|
-
* **Then I should
|
507
|
+
* **Then I should( not)? see (an|the) element "..."**
|
517
508
|
|
518
509
|
Check that an element with the given selector is present on the page.
|
519
510
|
|
@@ -525,7 +516,7 @@ deprecation notice. Decide for yourself whether you want to use them:
|
|
525
516
|
Then I should not see the element ".sidebar"
|
526
517
|
|
527
518
|
|
528
|
-
* **Then I should
|
519
|
+
* **Then I should( not)? see (an|the) element for ...**
|
529
520
|
|
530
521
|
Check that an element with the given [selector alias](https://github.com/makandra/spreewald/blob/master/examples/selectors.rb) is present on the page.
|
531
522
|
|
@@ -555,12 +546,12 @@ deprecation notice. Decide for yourself whether you want to use them:
|
|
555
546
|
Checks that the page contains a link with a given text or title attribute.
|
556
547
|
|
557
548
|
|
558
|
-
* **Then the "..." field should
|
549
|
+
* **Then the "..." field should( not)? contain "..."**
|
559
550
|
|
560
551
|
Checks that an input field contains some value (allowing * as wildcard character)
|
561
552
|
|
562
553
|
|
563
|
-
* **Then the "..." field should
|
554
|
+
* **Then the "..." field should( not)? contain:**
|
564
555
|
|
565
556
|
Checks that a multiline textarea contains some value (allowing * as wildcard character)
|
566
557
|
|
data/Rakefile
CHANGED
@@ -17,14 +17,16 @@ namespace :matrix do
|
|
17
17
|
|
18
18
|
if gemfile.nil? || ruby.nil?
|
19
19
|
warn 'Please state the Gemfile and Ruby version to be used for the Testrun!'
|
20
|
+
exit 1
|
20
21
|
else
|
21
|
-
run_tests(gemfile, ruby)
|
22
|
+
success = run_tests(gemfile, ruby)
|
23
|
+
exit success ? 0 : 1
|
22
24
|
end
|
23
25
|
end
|
24
26
|
|
25
27
|
|
26
28
|
desc "Run all tests which are available for current Ruby (#{RUBY_VERSION})"
|
27
|
-
task :tests
|
29
|
+
task :tests do
|
28
30
|
Gemika::Matrix.from_ci_config.each do |row|
|
29
31
|
run_tests(row.gemfile, row.ruby)
|
30
32
|
end
|
data/examples/paths.rb
CHANGED
@@ -51,6 +51,13 @@ module NavigationHelpers
|
|
51
51
|
|
52
52
|
private
|
53
53
|
|
54
|
+
def path_to_show_or_edit(action_prose, model_prose, identifier)
|
55
|
+
model = model_prose_to_class(model_prose)
|
56
|
+
route = "#{action_prose == 'form' ? 'edit_' : ''}#{model_prose_to_route_segment(model_prose)}_path"
|
57
|
+
# For find_by_anything see https://makandracards.com/makandra/6361-find-an-activerecord-by-any-column-useful-for-cucumber-steps
|
58
|
+
send(route, model.find_by_anything!(identifier))
|
59
|
+
end
|
60
|
+
|
54
61
|
def model_prose_to_class(model_prose)
|
55
62
|
model_prose.gsub(' ', '_').classify.constantize
|
56
63
|
end
|
data/features/binary.feature
CHANGED
@@ -11,11 +11,15 @@ Feature: The `spreewald` binary
|
|
11
11
|
Then the output should contain:
|
12
12
|
"""
|
13
13
|
# All Spreewald steps containing 'should not see'
|
14
|
-
Then I should not see "..."
|
15
|
-
Then I should not see "..." in the HTML
|
16
|
-
Then I should not see
|
17
|
-
|
18
|
-
|
14
|
+
Then I should( not)? see "..."
|
15
|
+
Then I should( not)? see "..." in the HTML
|
16
|
+
Then I should( not)? see "..." inside any "..."
|
17
|
+
Then I should( not)? see '...'
|
18
|
+
Then I should( not)? see (an|the) element "..."
|
19
|
+
Then I should( not)? see (an|the) element for ...
|
20
|
+
Then I should( not)? see /.../
|
21
|
+
"""
|
22
|
+
But the output should not contain "Then show me the page"
|
19
23
|
And the output should not contain "mail"
|
20
24
|
|
21
25
|
|
@@ -43,15 +47,15 @@ Feature: The `spreewald` binary
|
|
43
47
|
"""
|
44
48
|
Then(/it strips parentheses/) do
|
45
49
|
Then /^(?:|I )should see \/([^\/]*)\/$/ do
|
46
|
-
Then(/^the "(.*?)" field should
|
50
|
+
Then(/^the "(.*?)" field should( not)? contain:$/) do
|
47
51
|
"""
|
48
52
|
|
49
53
|
When I run `spreewald`
|
50
54
|
Then the output should contain "Then it strips parentheses"
|
51
|
-
And the output should contain "Then I should see /.../"
|
55
|
+
And the output should contain "Then I should( not)? see /.../"
|
52
56
|
And the output should contain:
|
53
57
|
"""
|
54
|
-
Then the "..." field should
|
58
|
+
Then the "..." field should( not)? contain:
|
55
59
|
"""
|
56
60
|
|
57
61
|
|
data/lib/spreewald/web_steps.rb
CHANGED
@@ -31,6 +31,7 @@ require 'spreewald_support/custom_matchers'
|
|
31
31
|
require 'spreewald_support/web_steps_helpers'
|
32
32
|
require 'spreewald_support/driver_info'
|
33
33
|
require 'spreewald_support/comparison'
|
34
|
+
require 'spreewald_support/field_errors'
|
34
35
|
require 'uri'
|
35
36
|
require 'cgi'
|
36
37
|
|
@@ -167,32 +168,23 @@ end.overridable
|
|
167
168
|
# Checks that some text appears on the page
|
168
169
|
#
|
169
170
|
# Note that this does not detect if the text might be hidden via CSS
|
170
|
-
Then /^(?:|I )should see "([^"]*)"$/ do |text|
|
171
|
+
Then /^(?:|I )should( not)? see "([^"]*)"$/ do |negate, text|
|
172
|
+
expectation = negate ? :not_to : :to
|
173
|
+
|
171
174
|
patiently do
|
172
|
-
expect(page).
|
175
|
+
expect(page).send(expectation, have_content(text))
|
173
176
|
end
|
174
177
|
end.overridable
|
175
178
|
|
176
179
|
# Checks that a regexp appears on the page
|
177
180
|
#
|
178
181
|
# Note that this does not detect if the text might be hidden via CSS
|
179
|
-
Then /^(?:|I )should see \/(.*)\/$/ do |regexp|
|
182
|
+
Then /^(?:|I )should( not)? see \/(.*)\/$/ do |negate, regexp|
|
183
|
+
expectation = negate ? :not_to : :to
|
180
184
|
regexp = Regexp.new(regexp)
|
181
|
-
patiently do
|
182
|
-
expect(page).to have_xpath('.//descendant-or-self::*', :text => regexp)
|
183
|
-
end
|
184
|
-
end.overridable
|
185
185
|
|
186
|
-
Then /^(?:|I )should not see "([^"]*)"$/ do |text|
|
187
186
|
patiently do
|
188
|
-
expect(page).
|
189
|
-
end
|
190
|
-
end.overridable
|
191
|
-
|
192
|
-
Then /^(?:|I )should not see \/(.*)\/$/ do |regexp|
|
193
|
-
patiently do
|
194
|
-
regexp = Regexp.new(regexp)
|
195
|
-
expect(page).to have_no_xpath('.//descendant-or-self::*', :text => regexp)
|
187
|
+
expect(page).send(expectation, have_xpath('.//descendant-or-self::*', text: regexp))
|
196
188
|
end
|
197
189
|
end.overridable
|
198
190
|
|
@@ -239,22 +231,20 @@ end.overridable(priority: -5) # priority lower than within
|
|
239
231
|
|
240
232
|
# Like `Then I should see`, but with single instead of double quotes. In case
|
241
233
|
# the expected string contains quotes as well.
|
242
|
-
Then /^(?:|I )should see '([^']*)'$/ do |text|
|
234
|
+
Then /^(?:|I )should( not)? see '([^']*)'$/ do |negate, text|
|
235
|
+
expectation = negate ? :not_to : :to
|
236
|
+
|
243
237
|
patiently do
|
244
|
-
expect(page).
|
238
|
+
expect(page).send(expectation, have_content(text))
|
245
239
|
end
|
246
240
|
end.overridable
|
247
241
|
|
248
242
|
# Check that the raw HTML contains a string
|
249
|
-
Then /^I should see "([^\"]*)" in the HTML$/ do |text|
|
250
|
-
|
251
|
-
expect(page.body).to include(text)
|
252
|
-
end
|
253
|
-
end.overridable
|
243
|
+
Then /^I should( not)? see "([^\"]*)" in the HTML$/ do |negate, text|
|
244
|
+
expectation = negate ? :not_to : :to
|
254
245
|
|
255
|
-
Then /^I should not see "([^\"]*)" in the HTML$/ do |text|
|
256
246
|
patiently do
|
257
|
-
expect(page.body).
|
247
|
+
expect(page.body).send(expectation, include(text))
|
258
248
|
end
|
259
249
|
end.overridable
|
260
250
|
|
@@ -271,7 +261,7 @@ end.overridable
|
|
271
261
|
# Then I should see the element ".panel"
|
272
262
|
# Then I should not see an element ".sidebar"
|
273
263
|
# Then I should not see the element ".sidebar"
|
274
|
-
Then /^I should
|
264
|
+
Then /^I should( not)? see (?:an|the) element "([^"]+)"$/ do |negate, selector|
|
275
265
|
expectation = negate ? :not_to : :to
|
276
266
|
patiently do
|
277
267
|
expect(page).send(expectation, have_css(selector))
|
@@ -286,7 +276,7 @@ end.overridable
|
|
286
276
|
# Then I should see the element for the panel
|
287
277
|
# Then I should not see an element for the sidebar
|
288
278
|
# Then I should not see the element for the sidebar
|
289
|
-
Then /^I should
|
279
|
+
Then /^I should( not)? see (?:an|the) element for (.*?)$/ do |negate, locator|
|
290
280
|
expectation = negate ? :not_to : :to
|
291
281
|
selector = _selector_for(locator)
|
292
282
|
patiently do
|
@@ -325,7 +315,7 @@ Then /^I should( not)? see a link labeled "([^"]*)"$/ do |negate, label|
|
|
325
315
|
end.overridable
|
326
316
|
|
327
317
|
# Checks that an input field contains some value (allowing * as wildcard character)
|
328
|
-
Then /^the "([^"]*)" field should
|
318
|
+
Then /^the "([^"]*)" field should( not)? contain "([^"]*)"$/ do |label, negate, expected_string|
|
329
319
|
patiently do
|
330
320
|
field = find_with_disabled(:field, label)
|
331
321
|
field_value = case field.tag_name
|
@@ -345,7 +335,7 @@ Then /^the "([^"]*)" field should (not )?contain "([^"]*)"$/ do |label, negate,
|
|
345
335
|
end.overridable
|
346
336
|
|
347
337
|
# Checks that a multiline textarea contains some value (allowing * as wildcard character)
|
348
|
-
Then(/^the "(.*?)" field should
|
338
|
+
Then(/^the "(.*?)" field should( not)? contain:$/) do |label, negate, expected_string|
|
349
339
|
patiently do
|
350
340
|
field = find_with_disabled(:field, label)
|
351
341
|
expect(field.value.chomp).send(negate ? :not_to : :to, contain_with_wildcards(expected_string))
|
@@ -370,17 +360,28 @@ end.overridable
|
|
370
360
|
Then /^the "([^"]*)" field should have the error "([^"]*)"$/ do |field, error_message|
|
371
361
|
patiently do
|
372
362
|
element = find_with_disabled(:field, field)
|
373
|
-
|
363
|
+
field_error_finder = Spreewald::FieldErrorFinder.new(page, element)
|
364
|
+
expect(field_error_finder.error_present?).to eq true
|
374
365
|
|
375
|
-
|
376
|
-
|
377
|
-
|
366
|
+
if Spreewald.field_error_class
|
367
|
+
unless Spreewald.error_message_xpath_selector
|
368
|
+
raise ArgumentError, 'No XPath was specified for the custom error message element.'
|
369
|
+
end
|
370
|
+
end
|
378
371
|
|
379
|
-
|
372
|
+
error_message_element = case
|
373
|
+
when Spreewald.error_message_xpath_selector
|
374
|
+
element.find(:xpath, Spreewald.error_message_xpath_selector)
|
375
|
+
when field_error_finder.bootstrap3_error?
|
376
|
+
element.find(:xpath, 'parent::*/child::*[@class="help-block"]')
|
377
|
+
when field_error_finder.bootstrap45_error?
|
378
|
+
element.find(:xpath, 'parent::*/child::*[@class="invalid-feedback"]')
|
379
|
+
else
|
380
|
+
nil
|
381
|
+
end
|
380
382
|
|
381
|
-
if
|
382
|
-
|
383
|
-
expect(error_paragraph).to have_content(error_message)
|
383
|
+
if error_message_element
|
384
|
+
expect(error_message_element).to have_content(error_message)
|
384
385
|
else
|
385
386
|
expect(page).to have_content("#{field.titlecase} #{error_message}")
|
386
387
|
end
|
@@ -390,9 +391,10 @@ end.overridable
|
|
390
391
|
Then /^the "([^\"]*)" field should( not)? have an error$/ do |label, negate|
|
391
392
|
patiently do
|
392
393
|
expectation = negate ? :not_to : :to
|
393
|
-
|
394
|
-
|
395
|
-
|
394
|
+
element = find_with_disabled(:field, label)
|
395
|
+
field_error_finder = Spreewald::FieldErrorFinder.new(page, element)
|
396
|
+
|
397
|
+
expect(field_error_finder.error_present?).public_send(expectation, (eq true))
|
396
398
|
end
|
397
399
|
end.overridable
|
398
400
|
|
@@ -484,18 +486,18 @@ end.overridable
|
|
484
486
|
# Checks for the presence of an option in a select
|
485
487
|
Then /^"([^"]*)" should( not)? be an option for "([^"]*)"$/ do |value, negate, field|
|
486
488
|
finder_arguments = if Spreewald::Comparison.compare_versions(Capybara::VERSION, :<, "2.12")
|
487
|
-
|
489
|
+
{ text: value }
|
488
490
|
else
|
489
|
-
|
491
|
+
{ exact_text: value }
|
490
492
|
end
|
491
493
|
patiently do
|
492
494
|
if negate
|
493
495
|
begin
|
494
|
-
expect(find_with_disabled(:field, field)).to have_no_css(
|
496
|
+
expect(find_with_disabled(:field, field)).to have_no_css('option', **finder_arguments)
|
495
497
|
rescue Capybara::ElementNotFound
|
496
498
|
end
|
497
499
|
else
|
498
|
-
expect(find_with_disabled(:field, field)).to have_css(
|
500
|
+
expect(find_with_disabled(:field, field)).to have_css('option', **finder_arguments)
|
499
501
|
end
|
500
502
|
end
|
501
503
|
end.overridable
|
@@ -648,18 +650,19 @@ end.overridable
|
|
648
650
|
|
649
651
|
# Tests that an input, button, checkbox or radio button with the given label is disabled.
|
650
652
|
Then /^the "([^\"]*)" (field|button|checkbox|radio button) should( not)? be disabled$/ do |label, kind, negate|
|
651
|
-
|
652
|
-
|
653
|
-
|
654
|
-
|
655
|
-
|
653
|
+
patiently do
|
654
|
+
element = if kind == 'button'
|
655
|
+
find_with_disabled(:button, label)
|
656
|
+
else
|
657
|
+
find_with_disabled(:field, label)
|
658
|
+
end
|
656
659
|
|
657
|
-
|
658
|
-
|
659
|
-
|
660
|
-
|
660
|
+
if Spreewald::Comparison.compare_versions(Capybara::VERSION, :<, "2.1")
|
661
|
+
expect(element[:disabled]).send(negate ? :to : :not_to, eq(nil))
|
662
|
+
else
|
663
|
+
expect(!!element.disabled?).to be !negate
|
664
|
+
end
|
661
665
|
end
|
662
|
-
|
663
666
|
end.overridable
|
664
667
|
|
665
668
|
# Tests that a field with the given label is visible.
|
@@ -0,0 +1,56 @@
|
|
1
|
+
require 'spreewald_support/driver_info'
|
2
|
+
|
3
|
+
module Spreewald
|
4
|
+
def self.field_error_class
|
5
|
+
self.instance_variable_get('@field_error_class')
|
6
|
+
end
|
7
|
+
|
8
|
+
def self.field_error_class=(error_class)
|
9
|
+
self.instance_variable_set('@field_error_class', error_class)
|
10
|
+
end
|
11
|
+
|
12
|
+
def self.error_message_xpath_selector
|
13
|
+
self.instance_variable_get('@error_message_xpath_selector')
|
14
|
+
end
|
15
|
+
|
16
|
+
# The XPath to the HTML-element that renders your validation/error message.
|
17
|
+
# The current node to start from is the input-field that is validated.
|
18
|
+
def self.error_message_xpath_selector=(message_selector)
|
19
|
+
self.instance_variable_set('@error_message_xpath_selector', message_selector)
|
20
|
+
end
|
21
|
+
|
22
|
+
class FieldErrorFinder
|
23
|
+
include Spreewald::DriverInfo
|
24
|
+
|
25
|
+
def initialize(page, element)
|
26
|
+
@page = page
|
27
|
+
@element = element
|
28
|
+
end
|
29
|
+
|
30
|
+
def error_present?
|
31
|
+
custom_error? || bootstrap3_error? || bootstrap45_error? || rails_error?
|
32
|
+
end
|
33
|
+
|
34
|
+
def custom_error?
|
35
|
+
Spreewald.field_error_class && @element.has_xpath?("ancestor-or-self::div[contains(@class, \"#{Spreewald.field_error_class}\")]")
|
36
|
+
end
|
37
|
+
|
38
|
+
def bootstrap3_error?
|
39
|
+
@element.has_xpath?('ancestor::div[@class="form-group has-error"]')
|
40
|
+
end
|
41
|
+
|
42
|
+
def bootstrap45_error?
|
43
|
+
element_classes = @element[:class] &.split(' ') || []
|
44
|
+
invalid_elements = if javascript_capable?
|
45
|
+
@page.all(':invalid') # Collect all invalid elements as Bootstrap 4 and 5 support client validation
|
46
|
+
end
|
47
|
+
|
48
|
+
element_classes.include?('is-invalid') || (invalid_elements && invalid_elements.include?(@element))
|
49
|
+
end
|
50
|
+
|
51
|
+
def rails_error?
|
52
|
+
parent_element_classes = @element.find(:xpath, '..')[:class] &.split(' ') || []
|
53
|
+
parent_element_classes.include?('field_with_errors')
|
54
|
+
end
|
55
|
+
end
|
56
|
+
end
|
data/support/step_definition.rb
CHANGED
@@ -33,6 +33,11 @@ class StepDefinition
|
|
33
33
|
"#{kind} #{pretty_step}"
|
34
34
|
end
|
35
35
|
|
36
|
+
def matches_search?(search)
|
37
|
+
regexp = Regexp.new(search)
|
38
|
+
step =~ regexp || matches_without_optional_negation?(regexp)
|
39
|
+
end
|
40
|
+
|
36
41
|
private
|
37
42
|
|
38
43
|
def pretty_step
|
@@ -45,4 +50,10 @@ class StepDefinition
|
|
45
50
|
end
|
46
51
|
end
|
47
52
|
|
53
|
+
def matches_without_optional_negation?(regexp)
|
54
|
+
without_negation = step.gsub('( not)?', '').gsub('(not )?', '')
|
55
|
+
with_negation = step.gsub('( not)?', ' not').gsub('(not )?', 'not ')
|
56
|
+
with_negation =~ regexp || without_negation =~ regexp
|
57
|
+
end
|
58
|
+
|
48
59
|
end
|
data/support/step_manager.rb
CHANGED
@@ -17,7 +17,7 @@ class StepManager
|
|
17
17
|
def steps(search = nil)
|
18
18
|
step_files.collect(&:real_steps).flatten.
|
19
19
|
sort_by { |step| [STEP_KINDS.index(step.kind), step.to_s.downcase] }.
|
20
|
-
select { |definition| search.nil?
|
20
|
+
select { |definition| search.nil? || definition.matches_search?(search) }
|
21
21
|
end
|
22
22
|
|
23
23
|
private
|
@@ -0,0 +1,12 @@
|
|
1
|
+
Then /^I set the custom field error class to "([^"]+)"$/ do |error_class|
|
2
|
+
Spreewald.field_error_class = error_class
|
3
|
+
end
|
4
|
+
|
5
|
+
Then /^I set the custom error message xpath to "(.+)"$/ do |error_message_xpath|
|
6
|
+
Spreewald.error_message_xpath_selector = error_message_xpath
|
7
|
+
end
|
8
|
+
|
9
|
+
After('@field_errors') do
|
10
|
+
Spreewald.field_error_class = nil
|
11
|
+
Spreewald.error_message_xpath_selector = nil
|
12
|
+
end
|
@@ -15,7 +15,16 @@ class FormsController < ApplicationController
|
|
15
15
|
def select_fields
|
16
16
|
end
|
17
17
|
|
18
|
-
def
|
18
|
+
def invalid_rails_form
|
19
19
|
end
|
20
20
|
|
21
|
-
|
21
|
+
def invalid_bootstrap3_form
|
22
|
+
end
|
23
|
+
|
24
|
+
def invalid_bootstrap4_form
|
25
|
+
end
|
26
|
+
|
27
|
+
def invalid_custom_form
|
28
|
+
end
|
29
|
+
|
30
|
+
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
= form_tag do
|
2
|
+
.form-group.has-error
|
3
|
+
= label_tag 'text_control', 'A'
|
4
|
+
= text_field_tag 'text_control', 'Text control value'
|
5
|
+
.help-block 'A is invalid'
|
6
|
+
.form-group.has-error
|
7
|
+
= label_tag 'textarea_control_1', 'B'
|
8
|
+
= text_area_tag 'textarea_control_1', "Textarea control line 1\nTextarea control line 2\n"
|
9
|
+
.help-block 'B is invalid'
|
10
|
+
.form-group.has-error
|
11
|
+
= label_tag 'disabled_control', 'Disabled'
|
12
|
+
= text_field_tag 'disabled_control', "Disabled control value", disabled: true
|
13
|
+
.help-block 'Disabled is invalid'
|
14
|
+
.form-group
|
15
|
+
= label_tag 'textarea_control_2', 'C'
|
16
|
+
= text_area_tag 'textarea_control_2', "Textarea control line 1\nTextarea control line 2\n"
|
@@ -0,0 +1,18 @@
|
|
1
|
+
= form_tag do
|
2
|
+
.form-group
|
3
|
+
= label_tag 'text_control', 'A'
|
4
|
+
- # Client validation
|
5
|
+
= text_field_tag 'text_control', '', class: 'form-control', required: true
|
6
|
+
.invalid-feedback 'A is invalid'
|
7
|
+
.form-group
|
8
|
+
= label_tag 'textarea_control_1', 'B'
|
9
|
+
= text_area_tag 'textarea_control_1', '', class: 'form-control', required: true
|
10
|
+
.invalid-feedback 'B is invalid'
|
11
|
+
.form-group
|
12
|
+
= label_tag 'disabled_control', 'Disabled'
|
13
|
+
- # Server validation
|
14
|
+
= text_field_tag 'disabled_control', "Disabled control value", class: 'form-control is-invalid', disabled: true
|
15
|
+
.invalid-feedback 'Disabled is invalid'
|
16
|
+
.form-group
|
17
|
+
= label_tag 'textarea_control_2', 'C'
|
18
|
+
= text_area_tag 'textarea_control_2', "Textarea control line 1\nTextarea control line 2\n"
|
@@ -0,0 +1,19 @@
|
|
1
|
+
= form_tag do
|
2
|
+
.form-group.my-error
|
3
|
+
= label_tag 'text_control', 'A'
|
4
|
+
= text_field_tag 'text_control', 'Text control value'
|
5
|
+
%p.my-error-description
|
6
|
+
A is invalid
|
7
|
+
.form-group.my-error
|
8
|
+
= label_tag 'textarea_control_1', 'B'
|
9
|
+
= text_area_tag 'textarea_control_1', "Textarea control line 1\nTextarea control line 2\n"
|
10
|
+
%p.my-error-description
|
11
|
+
B is invalid
|
12
|
+
.form-group.my-error
|
13
|
+
= label_tag 'disabled_control', 'Disabled'
|
14
|
+
= text_field_tag 'disabled_control', "Disabled control value", disabled: true
|
15
|
+
%p.my-error-description
|
16
|
+
Disabled is invalid
|
17
|
+
.form-group
|
18
|
+
= label_tag 'textarea_control_2', 'C'
|
19
|
+
= text_area_tag 'textarea_control_2', "Textarea control line 1\nTextarea control line 2\n"
|
File without changes
|
@@ -23,7 +23,10 @@ Rails.application.routes.draw do
|
|
23
23
|
get '/forms/form1', to: 'forms#form1'
|
24
24
|
get '/forms/form2', to: 'forms#form2'
|
25
25
|
get '/forms/select_fields', to: 'forms#select_fields'
|
26
|
-
get '/forms/
|
26
|
+
get '/forms/invalid_rails_form', to: 'forms#invalid_rails_form'
|
27
|
+
get '/forms/invalid_bootstrap3_form', to: 'forms#invalid_bootstrap3_form'
|
28
|
+
get '/forms/invalid_bootstrap4_form', to: 'forms#invalid_bootstrap4_form'
|
29
|
+
get '/forms/invalid_custom_form', to: 'forms#invalid_custom_form'
|
27
30
|
|
28
31
|
get '/iframes/iframe_1_content', to: 'iframes#iframe_1_content'
|
29
32
|
get '/iframes/iframe_2_content', to: 'iframes#iframe_2_content'
|
@@ -41,6 +44,7 @@ Rails.application.routes.draw do
|
|
41
44
|
get '/static_pages/session_1', to: 'static_pages#session_1'
|
42
45
|
get '/static_pages/session_2', to: 'static_pages#session_2'
|
43
46
|
get '/static_pages/session_3', to: 'static_pages#session_3'
|
47
|
+
get '/static_pages/should_see', to: 'static_pages#should_see'
|
44
48
|
get '/static_pages/tab_1', to: 'static_pages#tab_1'
|
45
49
|
get '/static_pages/tab_2', to: 'static_pages#tab_2'
|
46
50
|
get '/static_pages/tab_3', to: 'static_pages#tab_3'
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Feature: Web steps
|
2
2
|
|
3
|
-
Scenario: /^the "([^"]*)" field should
|
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
|
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,20 +31,57 @@ Feature: Web steps
|
|
31
31
|
"""
|
32
32
|
"""
|
33
33
|
|
34
|
-
|
34
|
+
@javascript @field_errors
|
35
35
|
Scenario: /^the "([^\"]*)" field should( not)? have an error$/
|
36
|
-
When I go to "/forms/
|
36
|
+
When I go to "/forms/invalid_rails_form"
|
37
|
+
Then the "A" field should have an error
|
38
|
+
Then the "B" field should have an error
|
39
|
+
Then the "Disabled" field should have an error
|
40
|
+
Then the "C" field should not have an error
|
41
|
+
|
42
|
+
When I go to "/forms/invalid_bootstrap3_form"
|
37
43
|
Then the "A" field should have an error
|
38
44
|
Then the "B" field should have an error
|
39
45
|
Then the "Disabled" field should have an error
|
40
46
|
Then the "C" field should not have an error
|
41
47
|
|
48
|
+
When I go to "/forms/invalid_bootstrap4_form"
|
49
|
+
Then the "A" field should have an error
|
50
|
+
Then the "B" field should have an error
|
51
|
+
Then the "Disabled" field should have an error
|
52
|
+
Then the "C" field should not have an error
|
53
|
+
|
54
|
+
When I set the custom field error class to "my-error"
|
55
|
+
And I go to "/forms/invalid_custom_form"
|
56
|
+
Then the "A" field should have an error
|
57
|
+
Then the "B" field should have an error
|
58
|
+
Then the "Disabled" field should have an error
|
59
|
+
Then the "C" field should not have an error
|
60
|
+
|
61
|
+
|
62
|
+
@javascript @field_errors
|
42
63
|
Scenario: /^the "([^"]*)" field should have the error "([^"]*)"$/
|
43
|
-
When I go to "/forms/
|
64
|
+
When I go to "/forms/invalid_rails_form"
|
44
65
|
Then the "A" field should have the error "is invalid"
|
45
66
|
Then the "B" field should have the error "is invalid"
|
46
67
|
Then the "Disabled" field should have the error "is invalid"
|
47
68
|
|
69
|
+
When I go to "/forms/invalid_bootstrap3_form"
|
70
|
+
Then the "A" field should have the error "is invalid"
|
71
|
+
Then the "B" field should have the error "is invalid"
|
72
|
+
Then the "Disabled" field should have the error "is invalid"
|
73
|
+
|
74
|
+
When I go to "/forms/invalid_bootstrap4_form"
|
75
|
+
Then the "A" field should have the error "is invalid"
|
76
|
+
Then the "B" field should have the error "is invalid"
|
77
|
+
Then the "Disabled" field should have the error "is invalid"
|
78
|
+
|
79
|
+
When I set the custom field error class to "my-error"
|
80
|
+
And I set the custom error message xpath to "parent::*/child::*[contains(@class, "my-error-description")]"
|
81
|
+
And I go to "/forms/invalid_custom_form"
|
82
|
+
Then the "A" field should have the error "is invalid"
|
83
|
+
Then the "B" field should have the error "is invalid"
|
84
|
+
Then the "Disabled" field should have the error "is invalid"
|
48
85
|
|
49
86
|
Scenario: /^I should see a form with the following values:$/
|
50
87
|
When I go to "/forms/form1"
|
@@ -200,7 +237,7 @@ Feature: Web steps
|
|
200
237
|
And "div with style: display: none" should be hidden within ".container"
|
201
238
|
|
202
239
|
|
203
|
-
Scenario: /^I should
|
240
|
+
Scenario: /^I should( not)? see (?:an|the) element "([^"]+)"$/
|
204
241
|
When I go to "/static_pages/see_element"
|
205
242
|
Then I should see an element ".panel"
|
206
243
|
And I should see the element ".panel"
|
@@ -210,7 +247,7 @@ Feature: Web steps
|
|
210
247
|
But I should not see the element ".timeline"
|
211
248
|
|
212
249
|
|
213
|
-
Scenario: /^I should
|
250
|
+
Scenario: /^I should( not)? see (?:an|the) element for (.*?)$/
|
214
251
|
When I go to "/static_pages/see_element"
|
215
252
|
Then I should see an element for a panel
|
216
253
|
And I should see the element for a panel
|
@@ -220,7 +257,26 @@ Feature: Web steps
|
|
220
257
|
And I should not see the element for the timeline
|
221
258
|
|
222
259
|
|
223
|
-
Scenario: /^((?:|I )should see "([^"]*)"
|
260
|
+
Scenario: /^((?:|I )should( not)? see "([^"]*)"$/
|
261
|
+
When I go to "/static_pages/should_see"
|
262
|
+
Then I should see "Normal text"
|
263
|
+
But I should not see "Some special text"
|
264
|
+
|
265
|
+
|
266
|
+
Scenario: /^((?:|I )should( not)? see '([^']*)'$/
|
267
|
+
When I go to "/static_pages/should_see"
|
268
|
+
Then I should see 'Some text with "quotes"'
|
269
|
+
But I should not see 'Some special text with "quotes"'
|
270
|
+
|
271
|
+
|
272
|
+
Scenario: /^I should( not)? see "([^\"]*)" in the HTML$/
|
273
|
+
When I go to "/static_pages/should_see"
|
274
|
+
Then I should see "Some text in the <b>HTML</b>" in the HTML
|
275
|
+
And I should see "Some text in the HTML"
|
276
|
+
But I should not see "Some text in the <strong>HTML</strong>" in the HTML
|
277
|
+
|
278
|
+
|
279
|
+
Scenario: /^((?:|I )should( not)? see "([^"]*)" within (.*[^:])$/
|
224
280
|
When I go to "/static_pages/within"
|
225
281
|
Then I should see "Role" within ".table"
|
226
282
|
And I should see "Permissions" within a table
|
@@ -232,7 +288,8 @@ Feature: Web steps
|
|
232
288
|
And I should not see "Outside Table" within a table
|
233
289
|
But I should see "Outside Table"
|
234
290
|
|
235
|
-
|
291
|
+
|
292
|
+
Scenario: /^(?:|I )should( not)? see \/([^\/]*)\/$/
|
236
293
|
When I go to "/static_pages/within"
|
237
294
|
Then I should see /Shared Text/
|
238
295
|
And I should see /Unique Text/
|
@@ -241,13 +298,8 @@ Feature: Web steps
|
|
241
298
|
But I should not see /Nonsense/
|
242
299
|
And I should not see /http://other-domain.com/
|
243
300
|
|
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
301
|
|
250
|
-
Scenario: /^(?:|I )should see \/([^\/]*)\/ within (.*[^:])$/
|
302
|
+
Scenario: /^(?:|I )should( not)? see \/([^\/]*)\/ within (.*[^:])$/
|
251
303
|
When I go to "/static_pages/within"
|
252
304
|
Then I should see /Shared Text/ within ".scoped-element"
|
253
305
|
And I should see /Shared Text/ within ".unrelated-element"
|
@@ -257,6 +309,11 @@ Feature: Web steps
|
|
257
309
|
But I should not see /Unique Text/ within ".unrelated-element"
|
258
310
|
And I should not see /http://other-domain.com/ within ".unrelated-element"
|
259
311
|
|
312
|
+
# making sure it works with a within scope correctly when the same element is available outside
|
313
|
+
Then I should not see /Outside Table/ within ".table"
|
314
|
+
And I should not see /Outside Table/ within a table
|
315
|
+
But I should see /Outside Table/
|
316
|
+
|
260
317
|
|
261
318
|
Scenario: /^(.*) within (.*[^:])$/ with a Capybara::Node::Element
|
262
319
|
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.
|
4
|
+
version: 4.3.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tobias Kraze
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-01-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: cucumber
|
@@ -165,6 +165,7 @@ files:
|
|
165
165
|
- lib/spreewald_support/compatibility.rb
|
166
166
|
- lib/spreewald_support/custom_matchers.rb
|
167
167
|
- lib/spreewald_support/driver_info.rb
|
168
|
+
- lib/spreewald_support/field_errors.rb
|
168
169
|
- lib/spreewald_support/github.rb
|
169
170
|
- lib/spreewald_support/mail_finder.rb
|
170
171
|
- lib/spreewald_support/mail_to_plaintext_converter.rb
|
@@ -231,6 +232,7 @@ files:
|
|
231
232
|
- tests/rails-6_capybara-3/features/overriding.feature
|
232
233
|
- tests/rails-6_capybara-3/features/session_steps.feature
|
233
234
|
- tests/rails-6_capybara-3/features/step_definitions/.gitkeep
|
235
|
+
- tests/rails-6_capybara-3/features/step_definitions/field_error_steps.rb
|
234
236
|
- tests/rails-6_capybara-3/features/step_definitions/overriding_steps.rb
|
235
237
|
- tests/rails-6_capybara-3/features/step_definitions/test_steps.rb
|
236
238
|
- tests/rails-6_capybara-3/features/support/env.rb
|
@@ -262,7 +264,10 @@ files:
|
|
262
264
|
- tests/shared/app/views/forms/disabled_elements.html.haml
|
263
265
|
- tests/shared/app/views/forms/form1.html.haml
|
264
266
|
- tests/shared/app/views/forms/form2.html.haml
|
265
|
-
- tests/shared/app/views/forms/
|
267
|
+
- tests/shared/app/views/forms/invalid_bootstrap3_form.html.haml
|
268
|
+
- tests/shared/app/views/forms/invalid_bootstrap4_form.html.haml
|
269
|
+
- tests/shared/app/views/forms/invalid_custom_form.html.haml
|
270
|
+
- tests/shared/app/views/forms/invalid_rails_form.html.haml
|
266
271
|
- tests/shared/app/views/forms/select_fields.html.haml
|
267
272
|
- tests/shared/app/views/iframes/iframe_1_content.haml
|
268
273
|
- tests/shared/app/views/iframes/iframe_2_content.haml
|
@@ -293,6 +298,7 @@ files:
|
|
293
298
|
- tests/shared/app/views/static_pages/session_1.haml
|
294
299
|
- tests/shared/app/views/static_pages/session_2.haml
|
295
300
|
- tests/shared/app/views/static_pages/session_3.haml
|
301
|
+
- tests/shared/app/views/static_pages/should_see.haml
|
296
302
|
- tests/shared/app/views/static_pages/tab_1.haml
|
297
303
|
- tests/shared/app/views/static_pages/tab_2.haml
|
298
304
|
- tests/shared/app/views/static_pages/tab_3.haml
|
@@ -391,6 +397,7 @@ test_files:
|
|
391
397
|
- tests/rails-6_capybara-3/features/overriding.feature
|
392
398
|
- tests/rails-6_capybara-3/features/session_steps.feature
|
393
399
|
- tests/rails-6_capybara-3/features/step_definitions/.gitkeep
|
400
|
+
- tests/rails-6_capybara-3/features/step_definitions/field_error_steps.rb
|
394
401
|
- tests/rails-6_capybara-3/features/step_definitions/overriding_steps.rb
|
395
402
|
- tests/rails-6_capybara-3/features/step_definitions/test_steps.rb
|
396
403
|
- tests/rails-6_capybara-3/features/support/env.rb
|
@@ -422,7 +429,10 @@ test_files:
|
|
422
429
|
- tests/shared/app/views/forms/disabled_elements.html.haml
|
423
430
|
- tests/shared/app/views/forms/form1.html.haml
|
424
431
|
- tests/shared/app/views/forms/form2.html.haml
|
425
|
-
- tests/shared/app/views/forms/
|
432
|
+
- tests/shared/app/views/forms/invalid_bootstrap3_form.html.haml
|
433
|
+
- tests/shared/app/views/forms/invalid_bootstrap4_form.html.haml
|
434
|
+
- tests/shared/app/views/forms/invalid_custom_form.html.haml
|
435
|
+
- tests/shared/app/views/forms/invalid_rails_form.html.haml
|
426
436
|
- tests/shared/app/views/forms/select_fields.html.haml
|
427
437
|
- tests/shared/app/views/iframes/iframe_1_content.haml
|
428
438
|
- tests/shared/app/views/iframes/iframe_2_content.haml
|
@@ -453,6 +463,7 @@ test_files:
|
|
453
463
|
- tests/shared/app/views/static_pages/session_1.haml
|
454
464
|
- tests/shared/app/views/static_pages/session_2.haml
|
455
465
|
- tests/shared/app/views/static_pages/session_3.haml
|
466
|
+
- tests/shared/app/views/static_pages/should_see.haml
|
456
467
|
- tests/shared/app/views/static_pages/tab_1.haml
|
457
468
|
- tests/shared/app/views/static_pages/tab_2.haml
|
458
469
|
- tests/shared/app/views/static_pages/tab_3.haml
|