Sha256: 62359b98e5d850aba38417b6dfd21ef3dcc21f3ac75d74b0938c78d1c53743cb
Contents?: true
Size: 375 Bytes
Versions: 4
Compression:
Stored size: 375 Bytes
Contents
# frozen_string_literal: true module Watir module CellContainer # # Returns table cell. # # @return [Cell] # def cell(opts = {}) Cell.new(self, opts) end # # Returns table cells collection. # # @return [Cell] # def cells(opts = {}) CellCollection.new(self, opts) end end # CellContainer end # Watir
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
watir-7.3.0 | lib/watir/cell_container.rb |
watir-7.2.2 | lib/watir/cell_container.rb |
watir-7.2.1 | lib/watir/cell_container.rb |
watir-7.2.0 | lib/watir/cell_container.rb |