lib/watir/elements/radio.rb in watir-6.10.1 vs lib/watir/elements/radio.rb in watir-6.10.2

- old
+ new

@@ -1,60 +1,60 @@ -module Watir - class Radio < Input - - def initialize(query_scope, selector) - super - @selector[:label] = @selector.delete(:text) if @selector.key?(:text) - end - - # - # Selects this radio button. - # - - def set - click unless set? - end - alias_method :select, :set - - # - # Is this radio set? - # - # @return [Boolean] - # - - def set? - element_call { @element.selected? } - end - alias_method :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(*args) - Radio.new(self, extract_selector(args).merge(tag_name: "input", type: "radio")) - end - - def radios(*args) - RadioCollection.new(self, extract_selector(args).merge(tag_name: "input", type: "radio" )) - end - end # Container - - class RadioCollection < InputCollection - private - - def element_class - Radio - end - end # RadioCollection -end # Watir +module Watir + class Radio < Input + + def initialize(query_scope, selector) + super + @selector[:label] = @selector.delete(:text) if @selector.key?(:text) + end + + # + # Selects this radio button. + # + + def set + click unless set? + end + alias_method :select, :set + + # + # Is this radio set? + # + # @return [Boolean] + # + + def set? + element_call { @element.selected? } + end + alias_method :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(*args) + Radio.new(self, extract_selector(args).merge(tag_name: "input", type: "radio")) + end + + def radios(*args) + RadioCollection.new(self, extract_selector(args).merge(tag_name: "input", type: "radio" )) + end + end # Container + + class RadioCollection < InputCollection + private + + def element_class + Radio + end + end # RadioCollection +end # Watir