mechanize.cr/spec/form/radio_button_spec.cr

84 lines
2.5 KiB
Crystal
Raw Permalink Normal View History

2021-06-18 23:00:33 +02:00
require "../spec_helper.cr"
2021-08-17 18:30:01 +02:00
WebMock.stub(:get, "example.com/form/radio_button").to_return(body: <<-BODY
2021-06-18 23:00:33 +02:00
<html>
<head>
<title>page_title</title>
</head>
<body>
<form action="post_path" method="post" name="sample_form">
<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">
</form>
</body>
</html>
BODY
)
describe "Form Fields RadioButton" do
agent = Mechanize.new
page = agent.get("http://example.com/form/radio_button")
form = page.forms[0]
radiobuttons = form.radiobuttons
radiobuttons.size.should eq 3
it "returns radiobutton check status" do
2021-08-17 18:30:01 +02:00
radiobuttons.map(&.checked?).should eq [false, false, false]
2021-06-18 23:00:33 +02:00
end
it "can change check status" do
radiobutton = radiobuttons.first
radiobutton.checked?.should eq false
radiobutton.check
radiobutton.checked?.should eq true
radiobutton.uncheck
radiobutton.checked?.should eq false
2021-08-17 18:30:01 +02:00
# #click reverses check status
2021-06-18 23:00:33 +02:00
radiobutton.click
radiobutton.checked?.should eq true
radiobutton.click
radiobutton.checked?.should eq false
end
it "check status is exclusive" do
radiobuttons[0].check
radiobuttons[0].checked.should eq true
radiobuttons[1].checked.should eq false
radiobuttons[1].check
radiobuttons[1].checked.should eq true
radiobuttons[0].checked.should eq false
end
it "doesn't included in request data if checkbox isn't checked" do
radiobuttons[0].check
form.request_data.should contain "contact=email"
radiobuttons[0].uncheck
form.request_data.should_not contain "contact"
end
it "can be found by radiobutton_with method" do
radiobutton = form.radiobutton_with("contact")
radiobutton.value.should eq "email"
end
it "can be found by radiobuttons_with method" do
radiobuttons = form.radiobuttons_with("contact")
radiobuttons.size.should eq 3
radiobuttons[0].value.should eq "email"
radiobuttons[1].value.should eq "phone"
radiobuttons[2].value.should eq "mail"
end
it "can be found by radiobutton_with method, argument type: Hash" do
radiobutton = form.radiobutton_with({"id": "contactChoice1"})
radiobutton.value.should eq "email"
end
it "can be found by radiobutton_with method, argument type: NamedTuple" do
radiobutton = form.radiobutton_with({id: "contactChoice1"})
radiobutton.value.should eq "email"
end
2021-06-18 23:00:33 +02:00
end