Class: Mechanize::Form::Option
- Inherits:
-
Object
- Object
- Mechanize::Form::Option
- Defined in:
- lib/mechanize/form/option.rb
Overview
This class contains option an option found within SelectList. A SelectList can have many Option classes associated with it. An option can be selected by calling Option#tick, or Option#click. For example, select the first option in a list:
select_list.first.tick
Instance Attribute Summary collapse
-
#select_list ⇒ Object
readonly
Returns the value of attribute select_list.
-
#selected ⇒ Object
(also: #selected?)
readonly
Returns the value of attribute selected.
-
#text ⇒ Object
readonly
Returns the value of attribute text.
-
#value ⇒ Object
(also: #to_s)
readonly
Returns the value of attribute value.
Instance Method Summary collapse
-
#click ⇒ Object
Toggle the selection value of this option.
-
#initialize(node, select_list) ⇒ Option
constructor
A new instance of Option.
-
#select ⇒ Object
(also: #tick)
Select this option.
-
#unselect ⇒ Object
(also: #untick)
Unselect this option.
Constructor Details
#initialize(node, select_list) ⇒ Option
Returns a new instance of Option.
14 15 16 17 18 19 |
# File 'lib/mechanize/form/option.rb', line 14 def initialize(node, select_list) @text = node.inner_text @value = Util.html_unescape(node['value'] || node.inner_text) @selected = node.has_attribute? 'selected' @select_list = select_list # The select list this option belongs to end |
Instance Attribute Details
#select_list ⇒ Object (readonly)
Returns the value of attribute select_list.
9 10 11 |
# File 'lib/mechanize/form/option.rb', line 9 def select_list @select_list end |
#selected ⇒ Object (readonly) Also known as: selected?
Returns the value of attribute selected.
9 10 11 |
# File 'lib/mechanize/form/option.rb', line 9 def selected @selected end |
#text ⇒ Object (readonly)
Returns the value of attribute text.
9 10 11 |
# File 'lib/mechanize/form/option.rb', line 9 def text @text end |
#value ⇒ Object (readonly) Also known as: to_s
Returns the value of attribute value.
9 10 11 |
# File 'lib/mechanize/form/option.rb', line 9 def value @value end |
Instance Method Details
#click ⇒ Object
Toggle the selection value of this option
36 37 38 39 |
# File 'lib/mechanize/form/option.rb', line 36 def click unselect_peers @selected = !@selected end |
#select ⇒ Object Also known as: tick
Select this option
22 23 24 25 |
# File 'lib/mechanize/form/option.rb', line 22 def select unselect_peers @selected = true end |
#unselect ⇒ Object Also known as: untick
Unselect this option
28 29 30 |
# File 'lib/mechanize/form/option.rb', line 28 def unselect @selected = false end |