Allow submitting forms by CSS selectors too.

Priority is given to selecting by ID for backwards compatibility.

Also add pending `submit_form` specs.
This commit is contained in:
Damian Janowski 2010-04-12 17:35:12 -03:00
parent e3bcf5c599
commit ef6874c855
2 changed files with 53 additions and 2 deletions

View File

@ -10,7 +10,7 @@ module Webrat
end end
def form_element def form_element
@dom.css("#" + @value).first @dom.css("#" + @value).first || @dom.css(@value).first
end end
end end

View File

@ -1,5 +1,56 @@
require File.expand_path(File.dirname(__FILE__) + "/../spec_helper") require File.expand_path(File.dirname(__FILE__) + "/../spec_helper")
describe "submit_form" do describe "submit_form" do
it "needs specs" it "should submit forms by ID" do
with_html <<-HTML
<html>
<form id="form1" action="/form1">
<label for="email">Email:</label> <input type="text" id="email" name="email" /></label>
<input type="submit" value="Add" />
</form>
</html>
HTML
webrat_session.should_receive(:get).with("/form1", "email" => "test@example.com")
fill_in "Email", :with => "test@example.com"
submit_form "form1"
end
it "should submit forms by CSS" do
with_html <<-HTML
<html>
<form id="form1" action="/form1">
<label for="email">Email:</label> <input id="email" type="text" name="email" />
<input type="submit" value="Add" />
</form>
</html>
HTML
webrat_session.should_receive(:get).with("/form1", "email" => "test@example.com")
fill_in "Email", :with => "test@example.com"
submit_form "form[action='/form1']"
end
it "should give priority to selecting forms by ID" do
with_html <<-HTML
<html>
<form action="/form1">
<label for="email">Email:</label> <input id="email" type="text" name="email" />
<input type="submit" value="Add" />
</form>
<form action="/form2" id="form">
<label for="email2">Another email:</label> <input id="email2" type="text" name="email" />
<input type="submit" value="Add" />
</form>
</html>
HTML
webrat_session.should_receive(:get).with("/form2", "email" => "test@example.com")
fill_in "Another email", :with => "test@example.com"
submit_form "form"
end
end end