Sha256: 1c9e2dea85370ed7419194d920b71c0935b67604eb05e2ce11cdcd30bb106555

Contents?: true

Size: 257 Bytes

Versions: 1

Compression:

Stored size: 257 Bytes

Contents

module Watir
  module RowContainer

    def row(*args)
      row = tr(*args)
      row.locator_class = ChildRowLocator

      row
    end

    def rows(*args)
      rows = trs(*args)
      rows.locator_class = ChildRowLocator

      rows
    end

  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
watir-webdriver-0.1.0 lib/watir-webdriver/row_container.rb