Sha256: 22fb0043c25c06bd13c687d1613fce5c057748917465332e7cc7cbd7d88311c6
Contents?: true
Size: 927 Bytes
Versions: 9
Compression:
Stored size: 927 Bytes
Contents
class Mechanize class Form # This class represents a radio button found in a Form. To activate the # RadioButton in the Form, set the checked method to true. class RadioButton < Field attr_accessor :checked def initialize node, form @checked = !!node['checked'] @form = form super(node) end def check uncheck_peers @checked = true end def uncheck @checked = false end def click checked ? uncheck : check end def label (id = self['id']) && @form.page.labels_hash[id] || nil end def text label.text rescue nil end def [](key) @node[key] end private def uncheck_peers @form.radiobuttons_with(:name => name).each do |b| next if b.value == value b.uncheck end end end end end
Version data entries
9 entries across 9 versions & 4 rubygems