Class: Mechanize::Form::SelectList

Inherits:
MultiSelectList show all
Defined in:
lib/mechanize/form/select_list.rb

Overview

This class represents a select list or drop down box in a Form. Set the value for the list by calling SelectList#value=. SelectList contains a list of Option that were found. After finding the correct option, set the select lists value to the option value:

selectlist.value = selectlist.options.first.value

Options can also be selected by “clicking” or selecting them. See Option

Instance Attribute Summary

Attributes inherited from MultiSelectList

#options

Attributes inherited from Field

#name

Instance Method Summary collapse

Methods inherited from MultiSelectList

#select_all, #select_none, #selected_options

Constructor Details

#initialize(name, node) ⇒ SelectList

Returns a new instance of SelectList.



10
11
12
13
14
15
16
17
# File 'lib/mechanize/form/select_list.rb', line 10

def initialize(name, node)
  super(name, node)
  if selected_options.length > 1
    selected_options.reverse[1..selected_options.length].each do |o|
      o.unselect
    end
  end
end

Instance Method Details

#query_valueObject



38
39
40
# File 'lib/mechanize/form/select_list.rb', line 38

def query_value
  value ? [[name, value]] : nil
end

#valueObject



19
20
21
22
23
24
25
26
27
28
# File 'lib/mechanize/form/select_list.rb', line 19

def value
  value = super
  if value.length > 0
    value.last
  elsif @options.length > 0
    @options.first.value
  else
    nil
  end
end

#value=(new) ⇒ Object



30
31
32
33
34
35
36
# File 'lib/mechanize/form/select_list.rb', line 30

def value=(new)
  if new != new.to_s and new.respond_to? :first
    super([new.first])
  else
    super([new.to_s])
  end
end