Method: Mechanize::Form::SelectList#value
- Defined in:
- lib/mechanize/form/select_list.rb
#value ⇒ Object
21 22 23 24 25 26 27 28 29 30 |
# File 'lib/mechanize/form/select_list.rb', line 21 def value value = super if value.length > 0 value.last elsif @options.length > 0 @options.first.value else nil end end |