capybara_minitest_spec 0.2.2 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.rvmrc +1 -1
- data/HISTORY.md +0 -0
- data/README.md +31 -32
- data/Rakefile +2 -2
- data/capybara_minitest_spec.gemspec +6 -4
- data/lib/capybara_minitest_spec.rb +53 -6
- data/lib/capybara_minitest_spec/test_name.rb +67 -0
- data/lib/capybara_minitest_spec/version.rb +1 -1
- data/spec/capybara_minitest_spec.spec.rb +13 -0
- data/spec/capybara_rspec_matchers.spec.rb +580 -0
- data/spec/helper.rb +39 -0
- data/{test_app → spec/test_app}/test_app.rb +0 -0
- data/{test_app → spec/test_app}/views/buttons.erb +0 -0
- data/{test_app → spec/test_app}/views/fieldsets.erb +0 -0
- data/{test_app → spec/test_app}/views/form.erb +0 -0
- data/{test_app → spec/test_app}/views/frame_one.erb +0 -0
- data/{test_app → spec/test_app}/views/frame_two.erb +0 -0
- data/{test_app → spec/test_app}/views/header_links.erb +0 -0
- data/{test_app → spec/test_app}/views/host_links.erb +0 -0
- data/{test_app → spec/test_app}/views/popup_one.erb +0 -0
- data/{test_app → spec/test_app}/views/popup_two.erb +0 -0
- data/{test_app → spec/test_app}/views/postback.erb +0 -0
- data/{test_app → spec/test_app}/views/tables.erb +0 -0
- data/{test_app → spec/test_app}/views/with_html.erb +0 -0
- data/{test_app → spec/test_app}/views/with_html_entities.erb +0 -0
- data/{test_app → spec/test_app}/views/with_js.erb +0 -0
- data/{test_app → spec/test_app}/views/with_scope.erb +0 -0
- data/{test_app → spec/test_app}/views/with_simple_html.erb +0 -0
- data/{test_app → spec/test_app}/views/within_frames.erb +0 -0
- data/{test_app → spec/test_app}/views/within_popups.erb +0 -0
- data/spec/test_name.spec.rb +47 -0
- metadata +142 -121
- data/lib/capybara_minitest_spec/matcher.rb +0 -126
- data/test/capybara_node_matchers_spec.rb +0 -471
- data/test/custom_matcher_spec.rb +0 -29
- data/test/matcher_spec.rb +0 -45
- data/test/spec_helper.rb +0 -14
- data/test_app/driver.rb +0 -297
- data/test_app/fixtures/capybara.jpg +0 -3
- data/test_app/fixtures/test_file.txt +0 -1
- data/test_app/public/test.js +0 -43
- data/test_app/session.rb +0 -154
- data/test_app/session/all_spec.rb +0 -78
- data/test_app/session/attach_file_spec.rb +0 -73
- data/test_app/session/check_spec.rb +0 -65
- data/test_app/session/choose_spec.rb +0 -26
- data/test_app/session/click_button_spec.rb +0 -304
- data/test_app/session/click_link_or_button_spec.rb +0 -36
- data/test_app/session/click_link_spec.rb +0 -119
- data/test_app/session/current_host_spec.rb +0 -68
- data/test_app/session/current_url_spec.rb +0 -15
- data/test_app/session/fill_in_spec.rb +0 -125
- data/test_app/session/find_button_spec.rb +0 -18
- data/test_app/session/find_by_id_spec.rb +0 -18
- data/test_app/session/find_field_spec.rb +0 -26
- data/test_app/session/find_link_spec.rb +0 -19
- data/test_app/session/find_spec.rb +0 -149
- data/test_app/session/first_spec.rb +0 -105
- data/test_app/session/has_button_spec.rb +0 -32
- data/test_app/session/has_content_spec.rb +0 -106
- data/test_app/session/has_css_spec.rb +0 -243
- data/test_app/session/has_field_spec.rb +0 -192
- data/test_app/session/has_link_spec.rb +0 -37
- data/test_app/session/has_select_spec.rb +0 -129
- data/test_app/session/has_selector_spec.rb +0 -129
- data/test_app/session/has_table_spec.rb +0 -96
- data/test_app/session/has_xpath_spec.rb +0 -123
- data/test_app/session/headers.rb +0 -19
- data/test_app/session/javascript.rb +0 -289
- data/test_app/session/response_code.rb +0 -19
- data/test_app/session/select_spec.rb +0 -113
- data/test_app/session/text_spec.rb +0 -19
- data/test_app/session/uncheck_spec.rb +0 -21
- data/test_app/session/unselect_spec.rb +0 -61
- data/test_app/session/within_spec.rb +0 -178
@@ -1,192 +0,0 @@
|
|
1
|
-
shared_examples_for "has_field" do
|
2
|
-
describe '#has_field' do
|
3
|
-
before { @session.visit('/form') }
|
4
|
-
|
5
|
-
it "should be true if the field is on the page" do
|
6
|
-
@session.should have_field('Dog')
|
7
|
-
@session.should have_field('form_description')
|
8
|
-
@session.should have_field('Region')
|
9
|
-
end
|
10
|
-
|
11
|
-
it "should be false if the field is not on the page" do
|
12
|
-
@session.should_not have_field('Monkey')
|
13
|
-
end
|
14
|
-
|
15
|
-
context 'with value' do
|
16
|
-
it "should be true if a field with the given value is on the page" do
|
17
|
-
@session.should have_field('First Name', :with => 'John')
|
18
|
-
@session.should have_field('Phone', :with => '+1 555 7021')
|
19
|
-
@session.should have_field('Street', :with => 'Sesame street 66')
|
20
|
-
@session.should have_field('Description', :with => 'Descriptive text goes here')
|
21
|
-
end
|
22
|
-
|
23
|
-
it "should be false if the given field is not on the page" do
|
24
|
-
@session.should_not have_field('First Name', :with => 'Peter')
|
25
|
-
@session.should_not have_field('Wrong Name', :with => 'John')
|
26
|
-
@session.should_not have_field('Description', :with => 'Monkey')
|
27
|
-
end
|
28
|
-
|
29
|
-
it "should be true after the field has been filled in with the given value" do
|
30
|
-
@session.fill_in('First Name', :with => 'Jonas')
|
31
|
-
@session.should have_field('First Name', :with => 'Jonas')
|
32
|
-
end
|
33
|
-
|
34
|
-
it "should be false after the field has been filled in with a different value" do
|
35
|
-
@session.fill_in('First Name', :with => 'Jonas')
|
36
|
-
@session.should_not have_field('First Name', :with => 'John')
|
37
|
-
end
|
38
|
-
end
|
39
|
-
end
|
40
|
-
|
41
|
-
describe '#has_no_field' do
|
42
|
-
before { @session.visit('/form') }
|
43
|
-
|
44
|
-
it "should be false if the field is on the page" do
|
45
|
-
@session.should_not have_no_field('Dog')
|
46
|
-
@session.should_not have_no_field('form_description')
|
47
|
-
@session.should_not have_no_field('Region')
|
48
|
-
end
|
49
|
-
|
50
|
-
it "should be true if the field is not on the page" do
|
51
|
-
@session.should have_no_field('Monkey')
|
52
|
-
end
|
53
|
-
|
54
|
-
context 'with value' do
|
55
|
-
it "should be false if a field with the given value is on the page" do
|
56
|
-
@session.should_not have_no_field('First Name', :with => 'John')
|
57
|
-
@session.should_not have_no_field('Phone', :with => '+1 555 7021')
|
58
|
-
@session.should_not have_no_field('Street', :with => 'Sesame street 66')
|
59
|
-
@session.should_not have_no_field('Description', :with => 'Descriptive text goes here')
|
60
|
-
end
|
61
|
-
|
62
|
-
it "should be true if the given field is not on the page" do
|
63
|
-
@session.should have_no_field('First Name', :with => 'Peter')
|
64
|
-
@session.should have_no_field('Wrong Name', :with => 'John')
|
65
|
-
@session.should have_no_field('Description', :with => 'Monkey')
|
66
|
-
end
|
67
|
-
|
68
|
-
it "should be false after the field has been filled in with the given value" do
|
69
|
-
@session.fill_in('First Name', :with => 'Jonas')
|
70
|
-
@session.should_not have_no_field('First Name', :with => 'Jonas')
|
71
|
-
end
|
72
|
-
|
73
|
-
it "should be true after the field has been filled in with a different value" do
|
74
|
-
@session.fill_in('First Name', :with => 'Jonas')
|
75
|
-
@session.should have_no_field('First Name', :with => 'John')
|
76
|
-
end
|
77
|
-
end
|
78
|
-
end
|
79
|
-
|
80
|
-
describe '#has_checked_field?' do
|
81
|
-
before { @session.visit('/form') }
|
82
|
-
|
83
|
-
it "should be true if a checked field is on the page" do
|
84
|
-
@session.should have_checked_field('gender_female')
|
85
|
-
@session.should have_checked_field('Hamster')
|
86
|
-
end
|
87
|
-
|
88
|
-
it "should be false if an unchecked field is on the page" do
|
89
|
-
@session.should_not have_checked_field('form_pets_cat')
|
90
|
-
@session.should_not have_checked_field('Male')
|
91
|
-
end
|
92
|
-
|
93
|
-
it "should be false if no field is on the page" do
|
94
|
-
@session.should_not have_checked_field('Does Not Exist')
|
95
|
-
end
|
96
|
-
|
97
|
-
it "should be true after an unchecked checkbox is checked" do
|
98
|
-
@session.check('form_pets_cat')
|
99
|
-
@session.should have_checked_field('form_pets_cat')
|
100
|
-
end
|
101
|
-
|
102
|
-
it "should be false after a checked checkbox is unchecked" do
|
103
|
-
@session.uncheck('form_pets_dog')
|
104
|
-
@session.should_not have_checked_field('form_pets_dog')
|
105
|
-
end
|
106
|
-
|
107
|
-
it "should be true after an unchecked radio button is chosen" do
|
108
|
-
@session.choose('gender_male')
|
109
|
-
@session.should have_checked_field('gender_male')
|
110
|
-
end
|
111
|
-
|
112
|
-
it "should be false after another radio button in the group is chosen" do
|
113
|
-
@session.choose('gender_male')
|
114
|
-
@session.should_not have_checked_field('gender_female')
|
115
|
-
end
|
116
|
-
end
|
117
|
-
|
118
|
-
describe '#has_no_checked_field?' do
|
119
|
-
before { @session.visit('/form') }
|
120
|
-
|
121
|
-
it "should be false if a checked field is on the page" do
|
122
|
-
@session.should_not have_no_checked_field('gender_female')
|
123
|
-
@session.should_not have_no_checked_field('Hamster')
|
124
|
-
end
|
125
|
-
|
126
|
-
it "should be true if an unchecked field is on the page" do
|
127
|
-
@session.should have_no_checked_field('form_pets_cat')
|
128
|
-
@session.should have_no_checked_field('Male')
|
129
|
-
end
|
130
|
-
|
131
|
-
it "should be true if no field is on the page" do
|
132
|
-
@session.should have_no_checked_field('Does Not Exist')
|
133
|
-
end
|
134
|
-
end
|
135
|
-
|
136
|
-
describe '#has_unchecked_field?' do
|
137
|
-
before { @session.visit('/form') }
|
138
|
-
|
139
|
-
it "should be false if a checked field is on the page" do
|
140
|
-
@session.should_not have_unchecked_field('gender_female')
|
141
|
-
@session.should_not have_unchecked_field('Hamster')
|
142
|
-
end
|
143
|
-
|
144
|
-
it "should be true if an unchecked field is on the page" do
|
145
|
-
@session.should have_unchecked_field('form_pets_cat')
|
146
|
-
@session.should have_unchecked_field('Male')
|
147
|
-
end
|
148
|
-
|
149
|
-
it "should be false if no field is on the page" do
|
150
|
-
@session.should_not have_unchecked_field('Does Not Exist')
|
151
|
-
end
|
152
|
-
|
153
|
-
it "should be false after an unchecked checkbox is checked" do
|
154
|
-
@session.check('form_pets_cat')
|
155
|
-
@session.should_not have_unchecked_field('form_pets_cat')
|
156
|
-
end
|
157
|
-
|
158
|
-
it "should be true after a checked checkbox is unchecked" do
|
159
|
-
@session.uncheck('form_pets_dog')
|
160
|
-
@session.should have_unchecked_field('form_pets_dog')
|
161
|
-
end
|
162
|
-
|
163
|
-
it "should be false after an unchecked radio button is chosen" do
|
164
|
-
@session.choose('gender_male')
|
165
|
-
@session.should_not have_unchecked_field('gender_male')
|
166
|
-
end
|
167
|
-
|
168
|
-
it "should be true after another radio button in the group is chosen" do
|
169
|
-
@session.choose('gender_male')
|
170
|
-
@session.should have_unchecked_field('gender_female')
|
171
|
-
end
|
172
|
-
end
|
173
|
-
|
174
|
-
describe '#has_no_unchecked_field?' do
|
175
|
-
before { @session.visit('/form') }
|
176
|
-
|
177
|
-
it "should be true if a checked field is on the page" do
|
178
|
-
@session.should have_no_unchecked_field('gender_female')
|
179
|
-
@session.should have_no_unchecked_field('Hamster')
|
180
|
-
end
|
181
|
-
|
182
|
-
it "should be false if an unchecked field is on the page" do
|
183
|
-
@session.should_not have_no_unchecked_field('form_pets_cat')
|
184
|
-
@session.should_not have_no_unchecked_field('Male')
|
185
|
-
end
|
186
|
-
|
187
|
-
it "should be true if no field is on the page" do
|
188
|
-
@session.should have_no_unchecked_field('Does Not Exist')
|
189
|
-
end
|
190
|
-
end
|
191
|
-
end
|
192
|
-
|
@@ -1,37 +0,0 @@
|
|
1
|
-
shared_examples_for "has_link" do
|
2
|
-
|
3
|
-
describe '#has_link?' do
|
4
|
-
before do
|
5
|
-
@session.visit('/with_html')
|
6
|
-
end
|
7
|
-
|
8
|
-
it "should be true if the given link is on the page" do
|
9
|
-
@session.should have_link('foo')
|
10
|
-
@session.should have_link('awesome title')
|
11
|
-
@session.should have_link('A link', :href => '/with_simple_html')
|
12
|
-
end
|
13
|
-
|
14
|
-
it "should be false if the given link is not on the page" do
|
15
|
-
@session.should_not have_link('monkey')
|
16
|
-
@session.should_not have_link('A link', :href => '/non-existant-href')
|
17
|
-
end
|
18
|
-
end
|
19
|
-
|
20
|
-
describe '#has_no_link?' do
|
21
|
-
before do
|
22
|
-
@session.visit('/with_html')
|
23
|
-
end
|
24
|
-
|
25
|
-
it "should be false if the given link is on the page" do
|
26
|
-
@session.should_not have_no_link('foo')
|
27
|
-
@session.should_not have_no_link('awesome title')
|
28
|
-
@session.should_not have_no_link('A link', :href => '/with_simple_html')
|
29
|
-
end
|
30
|
-
|
31
|
-
it "should be true if the given link is not on the page" do
|
32
|
-
@session.should have_no_link('monkey')
|
33
|
-
@session.should have_no_link('A link', :href => '/non-existant-href')
|
34
|
-
end
|
35
|
-
end
|
36
|
-
end
|
37
|
-
|
@@ -1,129 +0,0 @@
|
|
1
|
-
shared_examples_for "has_select" do
|
2
|
-
describe '#has_select?' do
|
3
|
-
before { @session.visit('/form') }
|
4
|
-
|
5
|
-
it "should be true if the field is on the page" do
|
6
|
-
@session.should have_select('Locale')
|
7
|
-
@session.should have_select('form_region')
|
8
|
-
@session.should have_select('Languages')
|
9
|
-
end
|
10
|
-
|
11
|
-
it "should be false if the field is not on the page" do
|
12
|
-
@session.should_not have_select('Monkey')
|
13
|
-
end
|
14
|
-
|
15
|
-
context 'with selected value' do
|
16
|
-
it "should be true if a field with the given value is on the page" do
|
17
|
-
@session.should have_select('form_locale', :selected => 'English')
|
18
|
-
@session.should have_select('Region', :selected => 'Norway')
|
19
|
-
@session.should have_select('Underwear', :selected => ['Briefs', 'Commando'])
|
20
|
-
end
|
21
|
-
|
22
|
-
it "should be false if the given field is not on the page" do
|
23
|
-
@session.should_not have_select('Locale', :selected => 'Swedish')
|
24
|
-
@session.should_not have_select('Does not exist', :selected => 'John')
|
25
|
-
@session.should_not have_select('City', :selected => 'Not there')
|
26
|
-
@session.should_not have_select('Underwear', :selected => ['Briefs', 'Nonexistant'])
|
27
|
-
@session.should_not have_select('Underwear', :selected => ['Briefs', 'Boxers'])
|
28
|
-
end
|
29
|
-
|
30
|
-
it "should be true after the given value is selected" do
|
31
|
-
@session.select('Swedish', :from => 'Locale')
|
32
|
-
@session.should have_select('Locale', :selected => 'Swedish')
|
33
|
-
end
|
34
|
-
|
35
|
-
it "should be false after a different value is selected" do
|
36
|
-
@session.select('Swedish', :from => 'Locale')
|
37
|
-
@session.should_not have_select('Locale', :selected => 'English')
|
38
|
-
end
|
39
|
-
|
40
|
-
it "should be true after the given values are selected" do
|
41
|
-
@session.select('Boxers', :from => 'Underwear')
|
42
|
-
@session.should have_select('Underwear', :selected => ['Briefs', 'Boxers', 'Commando'])
|
43
|
-
end
|
44
|
-
|
45
|
-
it "should be false after one of the values is unselected" do
|
46
|
-
@session.unselect('Briefs', :from => 'Underwear')
|
47
|
-
@session.should_not have_select('Underwear', :selected => ['Briefs', 'Commando'])
|
48
|
-
end
|
49
|
-
end
|
50
|
-
|
51
|
-
context 'with options' do
|
52
|
-
it "should be true if a field with the given options is on the page" do
|
53
|
-
@session.should have_select('form_locale', :options => ['English'])
|
54
|
-
@session.should have_select('Region', :options => ['Norway', 'Sweden'])
|
55
|
-
end
|
56
|
-
|
57
|
-
it "should be false if the given field is not on the page" do
|
58
|
-
@session.should_not have_select('Locale', :options => ['Not there'])
|
59
|
-
@session.should_not have_select('Does not exist', :options => ['John'])
|
60
|
-
@session.should_not have_select('City', :options => ['London', 'Made up city'])
|
61
|
-
end
|
62
|
-
end
|
63
|
-
end
|
64
|
-
|
65
|
-
describe '#has_no_select?' do
|
66
|
-
before { @session.visit('/form') }
|
67
|
-
|
68
|
-
it "should be false if the field is on the page" do
|
69
|
-
@session.should_not have_no_select('Locale')
|
70
|
-
@session.should_not have_no_select('form_region')
|
71
|
-
@session.should_not have_no_select('Languages')
|
72
|
-
end
|
73
|
-
|
74
|
-
it "should be true if the field is not on the page" do
|
75
|
-
@session.should have_no_select('Monkey')
|
76
|
-
end
|
77
|
-
|
78
|
-
context 'with selected value' do
|
79
|
-
it "should be false if a field with the given value is on the page" do
|
80
|
-
@session.should_not have_no_select('form_locale', :selected => 'English')
|
81
|
-
@session.should_not have_no_select('Region', :selected => 'Norway')
|
82
|
-
@session.should_not have_no_select('Underwear', :selected => ['Briefs', 'Commando'])
|
83
|
-
end
|
84
|
-
|
85
|
-
it "should be true if the given field is not on the page" do
|
86
|
-
@session.should have_no_select('Locale', :selected => 'Swedish')
|
87
|
-
@session.should have_no_select('Does not exist', :selected => 'John')
|
88
|
-
@session.should have_no_select('City', :selected => 'Not there')
|
89
|
-
@session.should have_no_select('Underwear', :selected => ['Briefs', 'Nonexistant'])
|
90
|
-
@session.should have_no_select('Underwear', :selected => ['Briefs', 'Boxers'])
|
91
|
-
end
|
92
|
-
|
93
|
-
it "should be false after the given value is selected" do
|
94
|
-
@session.select('Swedish', :from => 'Locale')
|
95
|
-
@session.should_not have_no_select('Locale', :selected => 'Swedish')
|
96
|
-
end
|
97
|
-
|
98
|
-
it "should be true after a different value is selected" do
|
99
|
-
@session.select('Swedish', :from => 'Locale')
|
100
|
-
@session.should have_no_select('Locale', :selected => 'English')
|
101
|
-
end
|
102
|
-
|
103
|
-
it "should be false after the given values are selected" do
|
104
|
-
@session.select('Boxers', :from => 'Underwear')
|
105
|
-
@session.should_not have_no_select('Underwear', :selected => ['Briefs', 'Boxers', 'Commando'])
|
106
|
-
end
|
107
|
-
|
108
|
-
it "should be true after one of the values is unselected" do
|
109
|
-
@session.unselect('Briefs', :from => 'Underwear')
|
110
|
-
@session.should have_no_select('Underwear', :selected => ['Briefs', 'Commando'])
|
111
|
-
end
|
112
|
-
end
|
113
|
-
|
114
|
-
context 'with options' do
|
115
|
-
it "should be false if a field with the given options is on the page" do
|
116
|
-
@session.should_not have_no_select('form_locale', :options => ['English'])
|
117
|
-
@session.should_not have_no_select('Region', :options => ['Norway', 'Sweden'])
|
118
|
-
end
|
119
|
-
|
120
|
-
it "should be true if the given field is not on the page" do
|
121
|
-
@session.should have_no_select('Locale', :options => ['Not there'])
|
122
|
-
@session.should have_no_select('Does not exist', :options => ['John'])
|
123
|
-
@session.should have_no_select('City', :options => ['London', 'Made up city'])
|
124
|
-
end
|
125
|
-
end
|
126
|
-
end
|
127
|
-
end
|
128
|
-
|
129
|
-
|
@@ -1,129 +0,0 @@
|
|
1
|
-
shared_examples_for "has_selector" do
|
2
|
-
describe '#has_selector?' do
|
3
|
-
before do
|
4
|
-
@session.visit('/with_html')
|
5
|
-
end
|
6
|
-
|
7
|
-
it "should be true if the given selector is on the page" do
|
8
|
-
@session.should have_selector(:xpath, "//p")
|
9
|
-
@session.should have_selector(:css, "p a#foo")
|
10
|
-
@session.should have_selector(:foo)
|
11
|
-
@session.should have_selector("//p[contains(.,'est')]")
|
12
|
-
end
|
13
|
-
|
14
|
-
it "should be false if the given selector is not on the page" do
|
15
|
-
@session.should_not have_selector(:xpath, "//abbr")
|
16
|
-
@session.should_not have_selector(:css, "p a#doesnotexist")
|
17
|
-
@session.should_not have_selector(:doesnotexist)
|
18
|
-
@session.should_not have_selector("//p[contains(.,'thisstringisnotonpage')]")
|
19
|
-
end
|
20
|
-
|
21
|
-
it "should use default selector" do
|
22
|
-
Capybara.default_selector = :css
|
23
|
-
@session.should_not have_selector("p a#doesnotexist")
|
24
|
-
@session.should have_selector("p a#foo")
|
25
|
-
end
|
26
|
-
|
27
|
-
it "should respect scopes" do
|
28
|
-
@session.within "//p[@id='first']" do
|
29
|
-
@session.should have_selector(".//a[@id='foo']")
|
30
|
-
@session.should_not have_selector(".//a[@id='red']")
|
31
|
-
end
|
32
|
-
end
|
33
|
-
|
34
|
-
context "with count" do
|
35
|
-
it "should be true if the content is on the page the given number of times" do
|
36
|
-
@session.should have_selector("//p", :count => 3)
|
37
|
-
@session.should have_selector("//p//a[@id='foo']", :count => 1)
|
38
|
-
@session.should have_selector("//p[contains(.,'est')]", :count => 1)
|
39
|
-
end
|
40
|
-
|
41
|
-
it "should be false if the content is on the page the given number of times" do
|
42
|
-
@session.should_not have_selector("//p", :count => 6)
|
43
|
-
@session.should_not have_selector("//p//a[@id='foo']", :count => 2)
|
44
|
-
@session.should_not have_selector("//p[contains(.,'est')]", :count => 5)
|
45
|
-
end
|
46
|
-
|
47
|
-
it "should be false if the content isn't on the page at all" do
|
48
|
-
@session.should_not have_selector("//abbr", :count => 2)
|
49
|
-
@session.should_not have_selector("//p//a[@id='doesnotexist']", :count => 1)
|
50
|
-
end
|
51
|
-
end
|
52
|
-
|
53
|
-
context "with text" do
|
54
|
-
it "should discard all matches where the given string is not contained" do
|
55
|
-
@session.should have_selector("//p//a", :text => "Redirect", :count => 1)
|
56
|
-
@session.should_not have_selector("//p", :text => "Doesnotexist")
|
57
|
-
end
|
58
|
-
|
59
|
-
it "should discard all matches where the given regexp is not matched" do
|
60
|
-
@session.should have_selector("//p//a", :text => /re[dab]i/i, :count => 1)
|
61
|
-
@session.should_not have_selector("//p//a", :text => /Red$/)
|
62
|
-
end
|
63
|
-
end
|
64
|
-
end
|
65
|
-
|
66
|
-
describe '#has_no_selector?' do
|
67
|
-
before do
|
68
|
-
@session.visit('/with_html')
|
69
|
-
end
|
70
|
-
|
71
|
-
it "should be false if the given selector is on the page" do
|
72
|
-
@session.should_not have_no_selector(:xpath, "//p")
|
73
|
-
@session.should_not have_no_selector(:css, "p a#foo")
|
74
|
-
@session.should_not have_no_selector(:foo)
|
75
|
-
@session.should_not have_no_selector("//p[contains(.,'est')]")
|
76
|
-
end
|
77
|
-
|
78
|
-
it "should be true if the given selector is not on the page" do
|
79
|
-
@session.should have_no_selector(:xpath, "//abbr")
|
80
|
-
@session.should have_no_selector(:css, "p a#doesnotexist")
|
81
|
-
@session.should have_no_selector(:doesnotexist)
|
82
|
-
@session.should have_no_selector("//p[contains(.,'thisstringisnotonpage')]")
|
83
|
-
end
|
84
|
-
|
85
|
-
it "should use default selector" do
|
86
|
-
Capybara.default_selector = :css
|
87
|
-
@session.should have_no_selector("p a#doesnotexist")
|
88
|
-
@session.should_not have_no_selector("p a#foo")
|
89
|
-
end
|
90
|
-
|
91
|
-
it "should respect scopes" do
|
92
|
-
@session.within "//p[@id='first']" do
|
93
|
-
@session.should_not have_no_selector(".//a[@id='foo']")
|
94
|
-
@session.should have_no_selector(".//a[@id='red']")
|
95
|
-
end
|
96
|
-
end
|
97
|
-
|
98
|
-
context "with count" do
|
99
|
-
it "should be false if the content is on the page the given number of times" do
|
100
|
-
@session.should_not have_no_selector("//p", :count => 3)
|
101
|
-
@session.should_not have_no_selector("//p//a[@id='foo']", :count => 1)
|
102
|
-
@session.should_not have_no_selector("//p[contains(.,'est')]", :count => 1)
|
103
|
-
end
|
104
|
-
|
105
|
-
it "should be true if the content is on the page the wrong number of times" do
|
106
|
-
@session.should have_no_selector("//p", :count => 6)
|
107
|
-
@session.should have_no_selector("//p//a[@id='foo']", :count => 2)
|
108
|
-
@session.should have_no_selector("//p[contains(.,'est')]", :count => 5)
|
109
|
-
end
|
110
|
-
|
111
|
-
it "should be true if the content isn't on the page at all" do
|
112
|
-
@session.should have_no_selector("//abbr", :count => 2)
|
113
|
-
@session.should have_no_selector("//p//a[@id='doesnotexist']", :count => 1)
|
114
|
-
end
|
115
|
-
end
|
116
|
-
|
117
|
-
context "with text" do
|
118
|
-
it "should discard all matches where the given string is contained" do
|
119
|
-
@session.should_not have_no_selector("//p//a", :text => "Redirect", :count => 1)
|
120
|
-
@session.should have_no_selector("//p", :text => "Doesnotexist")
|
121
|
-
end
|
122
|
-
|
123
|
-
it "should discard all matches where the given regexp is matched" do
|
124
|
-
@session.should_not have_no_selector("//p//a", :text => /re[dab]i/i, :count => 1)
|
125
|
-
@session.should have_no_selector("//p//a", :text => /Red$/)
|
126
|
-
end
|
127
|
-
end
|
128
|
-
end
|
129
|
-
end
|