Sha256: 24f3d7b520396d3d938a569da86626c5dfe3539f6afad3dd9f93bd174792a24e

Contents?: true

Size: 1.34 KB

Versions: 2

Compression:

Stored size: 1.34 KB

Contents

module PageObject
  module Platforms
    module SeleniumWebDriver
      module Table

        #
        # Return the PageObject::Elements::TableRow 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 first column.
        #
        # @return [PageObject::Elements::TableRow]
        #
        def [](idx)
          eles = table_rows
          idx = find_index_by_title(idx, eles) if idx.kind_of?(String)
          return nil unless idx
          Object::PageObject::Elements::TableRow.new(eles[idx], :platform => :selenium_webdriver)
        end

        #
        # Returns the number of rows in the table.
        #
        def rows
          table_rows.size
        end

        #
        # override PageObject::Platforms::SeleniumElement because exists? is not
        # available on a table element in Selenium.
        #
        def exists?
          raise "exists? not available on table element"
        end

        private

        def find_index_by_title(row_title, eles)
          eles.find_index do |row|
            columns = row.find_elements(:xpath, ".//child::td|th")
            columns.first.text == row_title
          end
        end

        def table_rows
          element.find_elements(:xpath, child_xpath)
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
page-object-0.6.9 lib/page-object/platforms/selenium_webdriver/table.rb
page-object-0.6.8 lib/page-object/platforms/selenium_webdriver/table.rb