nimboids-capybara 1.1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (105) hide show
  1. data/History.txt +289 -0
  2. data/README.rdoc +722 -0
  3. data/lib/capybara.rb +252 -0
  4. data/lib/capybara/cucumber.rb +28 -0
  5. data/lib/capybara/driver/base.rb +64 -0
  6. data/lib/capybara/driver/node.rb +74 -0
  7. data/lib/capybara/dsl.rb +168 -0
  8. data/lib/capybara/node/actions.rb +162 -0
  9. data/lib/capybara/node/base.rb +63 -0
  10. data/lib/capybara/node/document.rb +25 -0
  11. data/lib/capybara/node/element.rb +201 -0
  12. data/lib/capybara/node/finders.rb +197 -0
  13. data/lib/capybara/node/matchers.rb +417 -0
  14. data/lib/capybara/node/simple.rb +132 -0
  15. data/lib/capybara/rack_test/browser.rb +121 -0
  16. data/lib/capybara/rack_test/driver.rb +80 -0
  17. data/lib/capybara/rack_test/form.rb +80 -0
  18. data/lib/capybara/rack_test/node.rb +105 -0
  19. data/lib/capybara/rails.rb +17 -0
  20. data/lib/capybara/rspec.rb +26 -0
  21. data/lib/capybara/rspec/features.rb +22 -0
  22. data/lib/capybara/rspec/matchers.rb +154 -0
  23. data/lib/capybara/selector.rb +89 -0
  24. data/lib/capybara/selenium/driver.rb +163 -0
  25. data/lib/capybara/selenium/node.rb +91 -0
  26. data/lib/capybara/server.rb +90 -0
  27. data/lib/capybara/session.rb +321 -0
  28. data/lib/capybara/spec/driver.rb +301 -0
  29. data/lib/capybara/spec/fixtures/capybara.jpg +3 -0
  30. data/lib/capybara/spec/fixtures/test_file.txt +1 -0
  31. data/lib/capybara/spec/public/test.js +43 -0
  32. data/lib/capybara/spec/session.rb +154 -0
  33. data/lib/capybara/spec/session/all_spec.rb +78 -0
  34. data/lib/capybara/spec/session/attach_file_spec.rb +73 -0
  35. data/lib/capybara/spec/session/check_spec.rb +65 -0
  36. data/lib/capybara/spec/session/choose_spec.rb +26 -0
  37. data/lib/capybara/spec/session/click_button_spec.rb +304 -0
  38. data/lib/capybara/spec/session/click_link_or_button_spec.rb +36 -0
  39. data/lib/capybara/spec/session/click_link_spec.rb +119 -0
  40. data/lib/capybara/spec/session/current_host_spec.rb +68 -0
  41. data/lib/capybara/spec/session/current_url_spec.rb +15 -0
  42. data/lib/capybara/spec/session/fill_in_spec.rb +125 -0
  43. data/lib/capybara/spec/session/find_button_spec.rb +18 -0
  44. data/lib/capybara/spec/session/find_by_id_spec.rb +18 -0
  45. data/lib/capybara/spec/session/find_field_spec.rb +26 -0
  46. data/lib/capybara/spec/session/find_link_spec.rb +19 -0
  47. data/lib/capybara/spec/session/find_spec.rb +149 -0
  48. data/lib/capybara/spec/session/first_spec.rb +105 -0
  49. data/lib/capybara/spec/session/has_button_spec.rb +32 -0
  50. data/lib/capybara/spec/session/has_content_spec.rb +106 -0
  51. data/lib/capybara/spec/session/has_css_spec.rb +243 -0
  52. data/lib/capybara/spec/session/has_field_spec.rb +192 -0
  53. data/lib/capybara/spec/session/has_link_spec.rb +37 -0
  54. data/lib/capybara/spec/session/has_select_spec.rb +129 -0
  55. data/lib/capybara/spec/session/has_selector_spec.rb +129 -0
  56. data/lib/capybara/spec/session/has_table_spec.rb +96 -0
  57. data/lib/capybara/spec/session/has_xpath_spec.rb +123 -0
  58. data/lib/capybara/spec/session/headers.rb +19 -0
  59. data/lib/capybara/spec/session/javascript.rb +289 -0
  60. data/lib/capybara/spec/session/response_code.rb +19 -0
  61. data/lib/capybara/spec/session/select_spec.rb +113 -0
  62. data/lib/capybara/spec/session/text_spec.rb +19 -0
  63. data/lib/capybara/spec/session/uncheck_spec.rb +21 -0
  64. data/lib/capybara/spec/session/unselect_spec.rb +61 -0
  65. data/lib/capybara/spec/session/within_spec.rb +178 -0
  66. data/lib/capybara/spec/test_app.rb +142 -0
  67. data/lib/capybara/spec/views/buttons.erb +4 -0
  68. data/lib/capybara/spec/views/fieldsets.erb +29 -0
  69. data/lib/capybara/spec/views/form.erb +365 -0
  70. data/lib/capybara/spec/views/frame_one.erb +8 -0
  71. data/lib/capybara/spec/views/frame_two.erb +8 -0
  72. data/lib/capybara/spec/views/header_links.erb +7 -0
  73. data/lib/capybara/spec/views/host_links.erb +12 -0
  74. data/lib/capybara/spec/views/popup_one.erb +8 -0
  75. data/lib/capybara/spec/views/popup_two.erb +8 -0
  76. data/lib/capybara/spec/views/postback.erb +13 -0
  77. data/lib/capybara/spec/views/tables.erb +122 -0
  78. data/lib/capybara/spec/views/with_html.erb +78 -0
  79. data/lib/capybara/spec/views/with_html_entities.erb +1 -0
  80. data/lib/capybara/spec/views/with_js.erb +48 -0
  81. data/lib/capybara/spec/views/with_scope.erb +36 -0
  82. data/lib/capybara/spec/views/with_simple_html.erb +1 -0
  83. data/lib/capybara/spec/views/within_frames.erb +10 -0
  84. data/lib/capybara/spec/views/within_popups.erb +25 -0
  85. data/lib/capybara/util/save_and_open_page.rb +44 -0
  86. data/lib/capybara/util/timeout.rb +27 -0
  87. data/lib/capybara/version.rb +3 -0
  88. data/spec/basic_node_spec.rb +77 -0
  89. data/spec/capybara_spec.rb +46 -0
  90. data/spec/driver/rack_test_driver_spec.rb +89 -0
  91. data/spec/driver/selenium_driver_spec.rb +50 -0
  92. data/spec/dsl_spec.rb +253 -0
  93. data/spec/fixtures/selenium_driver_rspec_failure.rb +8 -0
  94. data/spec/fixtures/selenium_driver_rspec_success.rb +8 -0
  95. data/spec/rspec/features_spec.rb +45 -0
  96. data/spec/rspec/matchers_spec.rb +495 -0
  97. data/spec/rspec_spec.rb +53 -0
  98. data/spec/save_and_open_page_spec.rb +155 -0
  99. data/spec/server_spec.rb +89 -0
  100. data/spec/session/rack_test_session_spec.rb +55 -0
  101. data/spec/session/selenium_session_spec.rb +26 -0
  102. data/spec/spec_helper.rb +30 -0
  103. data/spec/string_spec.rb +77 -0
  104. data/spec/timeout_spec.rb +28 -0
  105. metadata +346 -0
@@ -0,0 +1,78 @@
1
+ shared_examples_for "all" do
2
+ describe '#all' do
3
+ before do
4
+ @session.visit('/with_html')
5
+ end
6
+
7
+ it "should find all elements using the given locator" do
8
+ @session.all('//p').should have(3).elements
9
+ @session.all('//h1').first.text.should == 'This is a test'
10
+ @session.all("//input[@id='test_field']").first[:value].should == 'monkey'
11
+ end
12
+
13
+ it "should return an empty array when nothing was found" do
14
+ @session.all('//div[@id="nosuchthing"]').should be_empty
15
+ end
16
+
17
+ it "should accept an XPath instance" do
18
+ @session.visit('/form')
19
+ @xpath = XPath::HTML.fillable_field('Name')
20
+ @result = @session.all(@xpath).map { |r| r.value }
21
+ @result.should include('Smith', 'John', 'John Smith')
22
+ end
23
+
24
+ context "with css selectors" do
25
+ it "should find all elements using the given selector" do
26
+ @session.all(:css, 'h1').first.text.should == 'This is a test'
27
+ @session.all(:css, "input[id='test_field']").first[:value].should == 'monkey'
28
+ end
29
+
30
+ it "should find all elements when given a list of selectors" do
31
+ @session.all(:css, 'h1, p').should have(4).elements
32
+ end
33
+ end
34
+
35
+ context "with xpath selectors" do
36
+ it "should find the first element using the given locator" do
37
+ @session.all(:xpath, '//h1').first.text.should == 'This is a test'
38
+ @session.all(:xpath, "//input[@id='test_field']").first[:value].should == 'monkey'
39
+ end
40
+ end
41
+
42
+ context "with css as default selector" do
43
+ before { Capybara.default_selector = :css }
44
+ it "should find the first element using the given locator" do
45
+ @session.all('h1').first.text.should == 'This is a test'
46
+ @session.all("input[id='test_field']").first[:value].should == 'monkey'
47
+ end
48
+ after { Capybara.default_selector = :xpath }
49
+ end
50
+
51
+ context "with visible filter" do
52
+ after { Capybara.ignore_hidden_elements = false }
53
+ it "should only find visible nodes" do
54
+ @session.all("//a[@title='awesome title']").should have(2).elements
55
+ @session.all("//a[@title='awesome title']", :visible => true).should have(1).elements
56
+ Capybara.ignore_hidden_elements = true
57
+ @session.all("//a[@title='awesome title']").should have(1).elements
58
+ end
59
+
60
+ it "should only find invisible nodes" do
61
+ Capybara.ignore_hidden_elements = true
62
+ @session.all("//a[@title='awesome title']", :visible => false).should have(2).elements
63
+ end
64
+ end
65
+
66
+ context "within a scope" do
67
+ before do
68
+ @session.visit('/with_scope')
69
+ end
70
+
71
+ it "should find any element using the given locator" do
72
+ @session.within(:xpath, "//div[@id='for_bar']") do
73
+ @session.all('.//li').should have(2).elements
74
+ end
75
+ end
76
+ end
77
+ end
78
+ end
@@ -0,0 +1,73 @@
1
+ shared_examples_for "attach_file" do
2
+
3
+ describe "#attach_file" do
4
+ before do
5
+ @test_file_path = File.expand_path('../fixtures/test_file.txt', File.dirname(__FILE__))
6
+ @test_jpg_file_path = File.expand_path('../fixtures/capybara.jpg', File.dirname(__FILE__))
7
+ @session.visit('/form')
8
+ end
9
+
10
+ context "with normal form" do
11
+ it "should set a file path by id" do
12
+ @session.attach_file "form_image", __FILE__
13
+ @session.click_button('awesome')
14
+ extract_results(@session)['image'].should == File.basename(__FILE__)
15
+ end
16
+
17
+ it "should set a file path by label" do
18
+ @session.attach_file "Image", __FILE__
19
+ @session.click_button('awesome')
20
+ extract_results(@session)['image'].should == File.basename(__FILE__)
21
+ end
22
+ end
23
+
24
+ context "with multipart form" do
25
+ it "should set a file path by id" do
26
+ @session.attach_file "form_document", @test_file_path
27
+ @session.click_button('Upload')
28
+ @session.body.should include(File.read(@test_file_path))
29
+ end
30
+
31
+ it "should set a file path by label" do
32
+ @session.attach_file "Document", @test_file_path
33
+ @session.click_button('Upload')
34
+ @session.body.should include(File.read(@test_file_path))
35
+ end
36
+
37
+ it "should not break if no file is submitted" do
38
+ @session.click_button('Upload')
39
+ @session.body.should include('No file uploaded')
40
+ end
41
+
42
+ it "should send content type text/plain when uploading a text file" do
43
+ @session.attach_file "Document", @test_file_path
44
+ @session.click_button 'Upload'
45
+ @session.body.should include('text/plain')
46
+ end
47
+
48
+ it "should send content type image/jpeg when uploading an image" do
49
+ @session.attach_file "Document", @test_jpg_file_path
50
+ @session.click_button 'Upload'
51
+ @session.body.should include('image/jpeg')
52
+ end
53
+
54
+ it "should not break when using HTML5 multiple file input" do
55
+ @session.attach_file "Multiple Documents", @test_file_path
56
+ @session.click_button('Upload Multiple')
57
+ @session.body.should include(File.read(@test_file_path))
58
+ end
59
+ end
60
+
61
+ context "with a locator that doesn't exist" do
62
+ it "should raise an error" do
63
+ running { @session.attach_file('does not exist', @test_file_path) }.should raise_error(Capybara::ElementNotFound)
64
+ end
65
+ end
66
+
67
+ context "with a path that doesn't exist" do
68
+ it "should raise an error" do
69
+ running { @session.attach_file('Image', '/no_such_file.png') }.should raise_error(Capybara::FileNotFound)
70
+ end
71
+ end
72
+ end
73
+ end
@@ -0,0 +1,65 @@
1
+ shared_examples_for "check" do
2
+
3
+ describe "#check" do
4
+ before do
5
+ @session.visit('/form')
6
+ end
7
+
8
+ describe "'checked' attribute" do
9
+ it "should be true if checked" do
10
+ @session.check("Terms of Use")
11
+ @session.find(:xpath, "//input[@id='form_terms_of_use']")['checked'].should be_true
12
+ end
13
+
14
+ it "should be false if unchecked" do
15
+ @session.find(:xpath, "//input[@id='form_terms_of_use']")['checked'].should be_false
16
+ end
17
+ end
18
+
19
+ describe "checking" do
20
+ it "should not change an already checked checkbox" do
21
+ @session.find(:xpath, "//input[@id='form_pets_dog']")['checked'].should be_true
22
+ @session.check('form_pets_dog')
23
+ @session.find(:xpath, "//input[@id='form_pets_dog']")['checked'].should be_true
24
+ end
25
+
26
+ it "should check an unchecked checkbox" do
27
+ @session.find(:xpath, "//input[@id='form_pets_cat']")['checked'].should be_false
28
+ @session.check('form_pets_cat')
29
+ @session.find(:xpath, "//input[@id='form_pets_cat']")['checked'].should be_true
30
+ end
31
+ end
32
+
33
+ describe "unchecking" do
34
+ it "should not change an already unchecked checkbox" do
35
+ @session.find(:xpath, "//input[@id='form_pets_cat']")['checked'].should be_false
36
+ @session.uncheck('form_pets_cat')
37
+ @session.find(:xpath, "//input[@id='form_pets_cat']")['checked'].should be_false
38
+ end
39
+
40
+ it "should uncheck a checked checkbox" do
41
+ @session.find(:xpath, "//input[@id='form_pets_dog']")['checked'].should be_true
42
+ @session.uncheck('form_pets_dog')
43
+ @session.find(:xpath, "//input[@id='form_pets_dog']")['checked'].should be_false
44
+ end
45
+ end
46
+
47
+ it "should check a checkbox by id" do
48
+ @session.check("form_pets_cat")
49
+ @session.click_button('awesome')
50
+ extract_results(@session)['pets'].should include('dog', 'cat', 'hamster')
51
+ end
52
+
53
+ it "should check a checkbox by label" do
54
+ @session.check("Cat")
55
+ @session.click_button('awesome')
56
+ extract_results(@session)['pets'].should include('dog', 'cat', 'hamster')
57
+ end
58
+
59
+ context "with a locator that doesn't exist" do
60
+ it "should raise an error" do
61
+ running { @session.check('does not exist') }.should raise_error(Capybara::ElementNotFound)
62
+ end
63
+ end
64
+ end
65
+ end
@@ -0,0 +1,26 @@
1
+ shared_examples_for "choose" do
2
+
3
+ describe "#choose" do
4
+ before do
5
+ @session.visit('/form')
6
+ end
7
+
8
+ it "should choose a radio button by id" do
9
+ @session.choose("gender_male")
10
+ @session.click_button('awesome')
11
+ extract_results(@session)['gender'].should == 'male'
12
+ end
13
+
14
+ it "should choose a radio button by label" do
15
+ @session.choose("Both")
16
+ @session.click_button('awesome')
17
+ extract_results(@session)['gender'].should == 'both'
18
+ end
19
+
20
+ context "with a locator that doesn't exist" do
21
+ it "should raise an error" do
22
+ running { @session.choose('does not exist') }.should raise_error(Capybara::ElementNotFound)
23
+ end
24
+ end
25
+ end
26
+ end
@@ -0,0 +1,304 @@
1
+ shared_examples_for "click_button" do
2
+ describe '#click_button' do
3
+ before do
4
+ @session.visit('/form')
5
+ end
6
+
7
+ context "with multiple values with the same name" do
8
+ it "should use the latest given value" do
9
+ @session.check('Terms of Use')
10
+ @session.click_button('awesome')
11
+ extract_results(@session)['terms_of_use'].should == '1'
12
+ end
13
+ end
14
+
15
+ context "with a form that has a relative url as an action" do
16
+ it "should post to the correct url" do
17
+ @session.click_button('Relative Action')
18
+ @session.current_path.should == '/relative'
19
+ extract_results(@session)['relative'].should == 'Relative Action'
20
+ end
21
+ end
22
+
23
+ context "with a form that has no action specified" do
24
+ it "should post to the correct url" do
25
+ @session.click_button('No Action')
26
+ @session.current_path.should == '/form'
27
+ extract_results(@session)['no_action'].should == 'No Action'
28
+ end
29
+ end
30
+
31
+ context "with value given on a submit button" do
32
+ context "on a form with HTML5 fields" do
33
+ before do
34
+ @session.click_button('html5_submit')
35
+ @results = extract_results(@session)
36
+ end
37
+
38
+ it "should serialise and submit search fields" do
39
+ @results['html5_search'].should == 'what are you looking for'
40
+ end
41
+
42
+ it "should serialise and submit email fields" do
43
+ @results['html5_email'].should == 'person@email.com'
44
+ end
45
+
46
+ it "should serialise and submit url fields" do
47
+ @results['html5_url'].should == 'http://www.example.com'
48
+ end
49
+
50
+ it "should serialise and submit tel fields" do
51
+ @results['html5_tel'].should == '911'
52
+ end
53
+
54
+ it "should serialise and submit color fields" do
55
+ @results['html5_color'].should == '#FFFFFF'
56
+ end
57
+ end
58
+
59
+ context "on an HTML4 form" do
60
+ before do
61
+ @session.click_button('awesome')
62
+ @results = extract_results(@session)
63
+ end
64
+
65
+ it "should serialize and submit text fields" do
66
+ @results['first_name'].should == 'John'
67
+ end
68
+
69
+ it "should escape fields when submitting" do
70
+ @results['phone'].should == '+1 555 7021'
71
+ end
72
+
73
+ it "should serialize and submit password fields" do
74
+ @results['password'].should == 'seeekrit'
75
+ end
76
+
77
+ it "should serialize and submit hidden fields" do
78
+ @results['token'].should == '12345'
79
+ end
80
+
81
+ it "should not serialize fields from other forms" do
82
+ @results['middle_name'].should be_nil
83
+ end
84
+
85
+ it "should submit the button that was clicked, but not other buttons" do
86
+ @results['awesome'].should == 'awesome'
87
+ @results['crappy'].should be_nil
88
+ end
89
+
90
+ it "should serialize radio buttons" do
91
+ @results['gender'].should == 'female'
92
+ end
93
+
94
+ it "should serialize check boxes" do
95
+ @results['pets'].should include('dog', 'hamster')
96
+ @results['pets'].should_not include('cat')
97
+ end
98
+
99
+ it "should serialize text areas" do
100
+ @results['description'].should == 'Descriptive text goes here'
101
+ end
102
+
103
+ it "should serialize select tag with values" do
104
+ @results['locale'].should == 'en'
105
+ end
106
+
107
+ it "should serialize select tag without values" do
108
+ @results['region'].should == 'Norway'
109
+ end
110
+
111
+ it "should serialize first option for select tag with no selection" do
112
+ @results['city'].should == 'London'
113
+ end
114
+
115
+ it "should not serialize a select tag without options" do
116
+ @results['tendency'].should be_nil
117
+ end
118
+
119
+ it "should not submit disabled fields" do
120
+ @results['disabled_text_field'].should be_nil
121
+ @results['disabled_textarea'].should be_nil
122
+ @results['disabled_checkbox'].should be_nil
123
+ @results['disabled_radio'].should be_nil
124
+ @results['disabled_select'].should be_nil
125
+ @results['disabled_file'].should be_nil
126
+ end
127
+ end
128
+ end
129
+
130
+ context "with id given on a submit button" do
131
+ it "should submit the associated form" do
132
+ @session.click_button('awe123')
133
+ extract_results(@session)['first_name'].should == 'John'
134
+ end
135
+
136
+ it "should work with partial matches" do
137
+ @session.click_button('Go')
138
+ @session.body.should include('You landed')
139
+ end
140
+ end
141
+
142
+ context "with title given on a submit button" do
143
+ it "should submit the associated form" do
144
+ @session.click_button('What an Awesome Button')
145
+ extract_results(@session)['first_name'].should == 'John'
146
+ end
147
+
148
+ it "should work with partial matches" do
149
+ @session.click_button('What an Awesome')
150
+ extract_results(@session)['first_name'].should == 'John'
151
+ end
152
+ end
153
+
154
+ context "with alt given on an image button" do
155
+ it "should submit the associated form" do
156
+ @session.click_button('oh hai thar')
157
+ extract_results(@session)['first_name'].should == 'John'
158
+ end
159
+
160
+ it "should work with partial matches" do
161
+ @session.click_button('hai')
162
+ extract_results(@session)['first_name'].should == 'John'
163
+ end
164
+ end
165
+
166
+ context "with value given on an image button" do
167
+ it "should submit the associated form" do
168
+ @session.click_button('okay')
169
+ extract_results(@session)['first_name'].should == 'John'
170
+ end
171
+
172
+ it "should work with partial matches" do
173
+ @session.click_button('kay')
174
+ extract_results(@session)['first_name'].should == 'John'
175
+ end
176
+ end
177
+
178
+ context "with id given on an image button" do
179
+ it "should submit the associated form" do
180
+ @session.click_button('okay556')
181
+ extract_results(@session)['first_name'].should == 'John'
182
+ end
183
+ end
184
+
185
+ context "with title given on an image button" do
186
+ it "should submit the associated form" do
187
+ @session.click_button('Okay 556 Image')
188
+ extract_results(@session)['first_name'].should == 'John'
189
+ end
190
+
191
+ it "should work with partial matches" do
192
+ @session.click_button('Okay 556')
193
+ extract_results(@session)['first_name'].should == 'John'
194
+ end
195
+ end
196
+
197
+ context "with text given on a button defined by <button> tag" do
198
+ it "should submit the associated form" do
199
+ @session.click_button('Click me')
200
+ extract_results(@session)['first_name'].should == 'John'
201
+ end
202
+
203
+ it "should work with partial matches" do
204
+ @session.click_button('Click')
205
+ extract_results(@session)['first_name'].should == 'John'
206
+ end
207
+
208
+ it "should prefer exact matches over partial matches" do
209
+ @session.click_button('Just an input')
210
+ extract_results(@session)['button'].should == 'button_second'
211
+ end
212
+ end
213
+
214
+ context "with id given on a button defined by <button> tag" do
215
+ it "should submit the associated form" do
216
+ @session.click_button('click_me_123')
217
+ extract_results(@session)['first_name'].should == 'John'
218
+ end
219
+
220
+ it "should serialize and send GET forms" do
221
+ @session.visit('/form')
222
+ @session.click_button('med')
223
+ @results = extract_results(@session)
224
+ @results['middle_name'].should == 'Darren'
225
+ @results['foo'].should be_nil
226
+ end
227
+ end
228
+
229
+ context "with value given on a button defined by <button> tag" do
230
+ it "should submit the associated form" do
231
+ @session.click_button('click_me')
232
+ extract_results(@session)['first_name'].should == 'John'
233
+ end
234
+
235
+ it "should work with partial matches" do
236
+ @session.click_button('ck_me')
237
+ extract_results(@session)['first_name'].should == 'John'
238
+ end
239
+
240
+ it "should prefer exact matches over partial matches" do
241
+ @session.click_button('Just a button')
242
+ extract_results(@session)['button'].should == 'Just a button'
243
+ end
244
+ end
245
+
246
+ context "with title given on a button defined by <button> tag" do
247
+ it "should submit the associated form" do
248
+ @session.click_button('Click Title button')
249
+ extract_results(@session)['first_name'].should == 'John'
250
+ end
251
+
252
+ it "should work with partial matches" do
253
+ @session.click_button('Click Title')
254
+ extract_results(@session)['first_name'].should == 'John'
255
+ end
256
+ end
257
+ context "with a locator that doesn't exist" do
258
+ it "should raise an error" do
259
+ running do
260
+ @session.click_button('does not exist')
261
+ end.should raise_error(Capybara::ElementNotFound)
262
+ end
263
+ end
264
+
265
+ it "should serialize and send valueless buttons that were clicked" do
266
+ @session.click_button('No Value!')
267
+ @results = extract_results(@session)
268
+ @results['no_value'].should_not be_nil
269
+ end
270
+
271
+ it "should not send image buttons that were not clicked" do
272
+ @session.click_button('Click me!')
273
+ @results = extract_results(@session)
274
+ @results['okay'].should be_nil
275
+ end
276
+
277
+ it "should serialize and send GET forms" do
278
+ @session.visit('/form')
279
+ @session.click_button('med')
280
+ @results = extract_results(@session)
281
+ @results['middle_name'].should == 'Darren'
282
+ @results['foo'].should be_nil
283
+ end
284
+
285
+ it "should follow redirects" do
286
+ @session.click_button('Go FAR')
287
+ @session.current_url.should match(%r{/landed$})
288
+ @session.body.should include('You landed')
289
+ end
290
+
291
+ it "should post pack to the same URL when no action given" do
292
+ @session.visit('/postback')
293
+ @session.click_button('With no action')
294
+ @session.body.should include('Postback')
295
+ end
296
+
297
+ it "should post pack to the same URL when blank action given" do
298
+ @session.visit('/postback')
299
+ @session.click_button('With blank action')
300
+ @session.body.should include('Postback')
301
+ end
302
+ end
303
+
304
+ end