Sha256: 5d754cc1e31455ed42c2f7bdbcd0f074a46fd5b3c39100470ddc88007d20e76d
Contents?: true
Size: 1.1 KB
Versions: 1
Compression:
Stored size: 1.1 KB
Contents
module Watir class Radio < Input def build @selector[:label] = @selector.delete(:text) if @selector.key?(:text) super end # # Selects this radio button. # def set click unless set? end alias select set # # Is this radio set? # # @return [Boolean] # def set? element_call { @element.selected? } end alias selected? set? # # Returns the text of the associated label. # Returns empty string if no label is found. # # @return [String] # def text l = label l.exist? ? l.text : '' end end # Radio module Container def radio(opts = {}) Radio.new(self, opts.merge(tag_name: 'input', type: 'radio')) end def radios(opts = {}) RadioCollection.new(self, opts.merge(tag_name: 'input', type: 'radio')) end end # Container class RadioCollection < InputCollection private def build @selector[:label] = @selector.delete(:text) if @selector.key?(:text) super end def element_class Radio end end # RadioCollection end # Watir
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
watir-7.0.0.beta1 | lib/watir/elements/radio.rb |