module Watir::CellContainer

Public Instance Methods

cell(*args) click to toggle source

Returns table cell.

@return [Cell]

# File lib/watir/cell_container.rb, line 9
def cell(*args)
  Cell.new(self, extract_selector(args))
end
cells(*args) click to toggle source

Returns table cells collection.

@return [Cell]

# File lib/watir/cell_container.rb, line 19
def cells(*args)
  CellCollection.new(self, extract_selector(args))
end