Class: Mechanize::Form::Field
- Inherits:
-
Object
- Object
- Mechanize::Form::Field
- Defined in:
- lib/mechanize/form/field.rb
Overview
This class represents a field in a form. It handles the following input tags found in a form: text, password, hidden, int, textarea
To set the value of a field, just use the value method: field.value = “foo”
Direct Known Subclasses
Button, FileUpload, Hidden, MultiSelectList, RadioButton, Text, Textarea
Instance Attribute Summary collapse
-
#name ⇒ Object
Returns the value of attribute name.
-
#node ⇒ Object
Returns the value of attribute node.
-
#value ⇒ Object
Returns the value of attribute value.
Instance Method Summary collapse
- #<=>(other) ⇒ Object
-
#initialize(node, value = node['value']) ⇒ Field
constructor
A new instance of Field.
- #query_value ⇒ Object
Constructor Details
#initialize(node, value = node['value']) ⇒ Field
Returns a new instance of Field.
12 13 14 15 16 17 18 19 20 |
# File 'lib/mechanize/form/field.rb', line 12 def initialize node, value = node['value'] @node = node @name = Util.html_unescape(node['name']) @value = if value.is_a? String Util.html_unescape(value) else value end end |
Instance Attribute Details
#name ⇒ Object
Returns the value of attribute name.
10 11 12 |
# File 'lib/mechanize/form/field.rb', line 10 def name @name end |
#node ⇒ Object
Returns the value of attribute node.
10 11 12 |
# File 'lib/mechanize/form/field.rb', line 10 def node @node end |
#value ⇒ Object
Returns the value of attribute value.
10 11 12 |
# File 'lib/mechanize/form/field.rb', line 10 def value @value end |
Instance Method Details
#<=>(other) ⇒ Object
26 27 28 29 30 31 |
# File 'lib/mechanize/form/field.rb', line 26 def <=> other return 0 if self == other return 1 if Hash === node return -1 if Hash === other.node node <=> other.node end |
#query_value ⇒ Object
22 23 24 |
# File 'lib/mechanize/form/field.rb', line 22 def query_value [[@name, @value || '']] end |