2021-06-11 04:18:25 +02:00
|
|
|
require "./spec_helper"
|
2021-06-16 16:20:03 +02:00
|
|
|
|
|
|
|
WebMock.stub(:get, "example.com/check_form").to_return(body:
|
2021-06-11 04:18:25 +02:00
|
|
|
<<-BODY
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>page_title</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<form action="post_path" method="post" name="sample_form">
|
|
|
|
<input type="text" name="name">
|
|
|
|
<input type="text" name="email">
|
2021-06-16 16:20:03 +02:00
|
|
|
<input type="checkbox" id="remember_me" name="remember_me" checked>
|
2021-06-17 05:04:45 +02:00
|
|
|
<input type="radio" id="contactChoice1" name="contact" value="email">
|
|
|
|
<input type="radio" id="contactChoice2" name="contact" value="phone">
|
|
|
|
<input type="radio" id="contactChoice3" name="contact" value="mail">
|
2021-06-11 04:18:25 +02:00
|
|
|
</form>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
BODY
|
|
|
|
)
|
|
|
|
|
|
|
|
describe "Mechanize Form test" do
|
|
|
|
agent = Mechanize.new
|
2021-06-16 16:20:03 +02:00
|
|
|
uri = "http://example.com/check_form"
|
2021-06-11 04:18:25 +02:00
|
|
|
page = agent.get(uri)
|
|
|
|
form = page.forms.first
|
2021-06-16 07:58:49 +02:00
|
|
|
|
2021-06-18 13:59:10 +02:00
|
|
|
it "returns form attribute" do
|
2021-06-11 04:18:25 +02:00
|
|
|
form.action.should eq "post_path"
|
|
|
|
form.method.should eq "POST"
|
|
|
|
form.enctype.should eq "application/x-www-form-urlencoded"
|
|
|
|
form.name.should eq "sample_form"
|
|
|
|
end
|
|
|
|
|
2021-06-16 07:58:49 +02:00
|
|
|
it "includes fields" do
|
|
|
|
form.fields.size.should eq 2
|
|
|
|
end
|
2021-06-11 04:18:25 +02:00
|
|
|
end
|