module Watir class TableRow < HTMLElement include CellContainer # # Get the n'th cell ( or ) of this row # # @return Watir::Cell # def [](idx) cell(:index, idx) end end # TableRow end # Watir