add textarea test
This commit is contained in:
parent
57bad568f7
commit
6144bb8a55
27
spec/form/textarea_spec.cr
Normal file
27
spec/form/textarea_spec.cr
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
require "../spec_helper"
|
||||||
|
|
||||||
|
WebMock.stub(:get, "example.com/form/textarea").to_return(body:
|
||||||
|
<<-BODY
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>page_title</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<form action="post_path" method="post" name="sample_form">
|
||||||
|
<input type="textarea" name="input_textarea">
|
||||||
|
<textarea name="textarea_tag">
|
||||||
|
</form>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
BODY
|
||||||
|
)
|
||||||
|
|
||||||
|
describe "Form Fields CheckBox" do
|
||||||
|
agent = Mechanize.new
|
||||||
|
page = agent.get("http://example.com/form/textarea")
|
||||||
|
form = page.forms[0]
|
||||||
|
|
||||||
|
it "returns textareas" do
|
||||||
|
form.textareas.size.should eq 2
|
||||||
|
end
|
||||||
|
end
|
@ -52,6 +52,11 @@ class MechanizeCr::Form
|
|||||||
elements_with "radiobutton"
|
elements_with "radiobutton"
|
||||||
elements_with "checkbox", "checkboxes"
|
elements_with "checkbox", "checkboxes"
|
||||||
|
|
||||||
|
# Returns all fields of type Textarea
|
||||||
|
def textareas
|
||||||
|
fields.select { |f| f.class == FormContent::Textarea }.map &.as(FormContent::Textarea)
|
||||||
|
end
|
||||||
|
|
||||||
private def parse
|
private def parse
|
||||||
@node.css("input").not_nil!.each do |html_node|
|
@node.css("input").not_nil!.each do |html_node|
|
||||||
html_node = html_node.as(Myhtml::Node)
|
html_node = html_node.as(Myhtml::Node)
|
||||||
@ -72,7 +77,7 @@ class MechanizeCr::Form
|
|||||||
when "hidden"
|
when "hidden"
|
||||||
fields << FormContent::Hidden.new(html_node)
|
fields << FormContent::Hidden.new(html_node)
|
||||||
when "textarea"
|
when "textarea"
|
||||||
@fields << FormContent::Textarea.new(html_node)
|
fields << FormContent::Textarea.new(html_node)
|
||||||
else
|
else
|
||||||
fields << FormContent::Field.new(html_node)
|
fields << FormContent::Field.new(html_node)
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user