Sha256: 935f1dd9d22265b2b0e847bfb908c92ee6141af45b39a1c951bdf545f30fbc07
Contents?: true
Size: 1.03 KB
Versions: 5
Compression:
Stored size: 1.03 KB
Contents
module PageObject module Platforms module LdsWatirWebDriver 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 any column. The text can be a substring of the full column text. # # @return [PageObject::Elements::TableRow] # def [](idx) idx = find_index_by_title(idx) if idx.kind_of?(String) return nil unless idx initialize_row(element[idx], :platform => :lds_watir_webdriver) end # # Returns the number of rows in the table. # def rows element.wd.find_elements(:xpath, child_xpath).size end private def find_index_by_title(row_title) element.rows.find_index do |row| row.cells.any? { |col| col.text.include? row_title } end end end end end end
Version data entries
5 entries across 5 versions & 1 rubygems