Sha256: cfe2f9b1a75d4dafef7f8b663c010c7655ead33072bf567d4c498d4805b5a4df
Contents?: true
Size: 1.24 KB
Versions: 1
Compression:
Stored size: 1.24 KB
Contents
module Watir # # Represents an option in a select list. # class Option < HTMLElement # # Selects this option. # # @example # browser.select(id: "foo").options.first.select # alias select click # # Toggles the selected state of this option. # # @example # browser.select(id: "foo").options.first.toggle # alias toggle click # # Clears (i.e. toggles selected state) option. # # @example # browser.select(id: "foo").options.first.clear # def clear click if selected? end # # Is this option selected? # # @return [Boolean] # def selected? element_call { @element.selected? } end # # Returns the text of option. # # Note that the text is either one of the following respectively: # * label attribute # * text attribute # * inner element text # # @return [String] # def text # A little unintuitive - we'll return the 'label' or 'text' attribute if # they exist, otherwise the inner text of the element %i[label text].each do |a| val = attribute_value(a) return val unless val.nil? end super end end # Option end # Watir
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
watir-6.14.0 | lib/watir/elements/option.rb |