Sha256: cac3c4418fe49f4c0f812392d30f9c932af4da71f43c7c8f23befee07bc4ec18

Contents?: true

Size: 1.09 KB

Versions: 7

Compression:

Stored size: 1.09 KB

Contents

module PageObject
  module Platforms
    module WatirWebDriver
      module TableRow

        #
        # Return the PageObject::Elements::TableCell for the index provided.  Index
        # is zero based.  If the index provided is a String then it
        # will be matched with the text from the columns in the first row.
        # The text can be a substring of the full column text.
        #
        def [](idx)
          idx = find_index_by_title(idx) if idx.kind_of?(String)
          return nil unless idx && columns >= idx + 1
          initialize_cell(element[idx], :platform => :watir_webdriver)
        end

        #
        # Returns the number of columns in the table.
        #
        def columns
          element.wd.find_elements(:xpath, child_xpath).size
        end

        private

        def find_index_by_title(title)
          table = element.parent
          table = table.parent if table.tag_name == 'tbody'
          first_row = table[0]
          first_row.cells.find_index {|column| column.text.include? title }
        end

      end
    end
  end
end

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
page-object-lds-0.0.14 lib/page-object/platforms/watir_webdriver/table_row.rb
page-object-lds-0.0.13 lib/page-object/platforms/watir_webdriver/table_row.rb
page-object-lds-0.0.12 lib/page-object/platforms/watir_webdriver/table_row.rb
page-object-lds-0.0.11 lib/page-object/platforms/watir_webdriver/table_row.rb
page-object-lds-0.0.1 lib/page-object/platforms/watir_webdriver/table_row.rb
meeane-page-object-0.1.10 lib/page-object/platforms/watir_webdriver/table_row.rb
meeane-page-object-0.1.8 lib/page-object/platforms/watir_webdriver/table_row.rb