Sha256: 0006362e6b89eae8c40de491eec826ff8984bb9e1424471577327e58d9ceb5f3

Contents?: true

Size: 430 Bytes

Versions: 1

Compression:

Stored size: 430 Bytes

Contents

module Watir
  module CellContainer
    #
    # Returns table cell.
    #
    # @return [Cell]
    #

    def cell(*args)
      Cell.new(self, extract_selector(args).merge(tag_name: /^(th|td)$/))
    end

    #
    # Returns table cells collection.
    #
    # @return [Cell]
    #

    def cells(*args)
      CellCollection.new(self, extract_selector(args).merge(tag_name: /^(th|td)$/))
    end
  end # CellContainer
end # Watir

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
watir-6.14.0 lib/watir/cell_container.rb