Sha256: 6fbdbc5f8130f58b95fe50e70423edad09d532d592edbc4b9d58eac9ad88a0e6

Contents?: true

Size: 457 Bytes

Versions: 1

Compression:

Stored size: 457 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.10.1 lib/watir/cell_container.rb