Sha256: 623bc4fd87951b7debd9f32e202bbb24d13868035a69d97ec61c524a1c92a77d
Contents?: true
Size: 899 Bytes
Versions: 16
Compression:
Stored size: 899 Bytes
Contents
## # This class represents a radio button found in a Form. To activate the # RadioButton in the Form, set the checked method to true. class Mechanize::Form::RadioButton < Mechanize::Form::Field attr_accessor :checked def initialize node, form @checked = !!node['checked'] @form = form super(node) end def check uncheck_peers @checked = true end alias checked? checked 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 def pretty_print_instance_variables # :nodoc: [:@checked, :@name, :@value] end private def uncheck_peers @form.radiobuttons_with(:name => name).each do |b| next if b.value == value b.uncheck end end end
Version data entries
16 entries across 16 versions & 4 rubygems