Sha256: ec7596652b2adaa1f8f335953426d840b519dd4236bb3fc9a177f7425f43be75
Contents?: true
Size: 930 Bytes
Versions: 1
Compression:
Stored size: 930 Bytes
Contents
module Watir module List include Enumerable # # Yields each LI associated with this list. # # @example # list = browser.ol # list.each do |li| # puts li.text # end # # @yieldparam [Watir::LI] element Iterate through the items for this List. # def each(&block) list_items.each(&block) end alias_method :length, :count alias_method :size, :count alias_method :items, :count alias_method :empty?, :none? # # Returns item from this list at given index. # # @param [Integer] idx # @return Watir::LI # def [](idx) list_items[idx] end def list_items LICollection.new(self, adjacent: :child, tag_name: 'li') end end # List class OList < HTMLElement include List end class UList < HTMLElement include List end end # Watir
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
watir-6.10.1 | lib/watir/elements/list.rb |