Sha256: 6f00448acd5267cba5a0cbbc6b7af72e2d4e76e30ba81ec11f78604d6f36d49b
Contents?: true
Size: 905 Bytes
Versions: 1
Compression:
Stored size: 905 Bytes
Contents
module PageObject module Platforms module WatirWebDriver 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) idx = find_index_by_title(idx) if idx.kind_of?(String) Object::PageObject::Elements::TableRow.new(element[idx], :platform => :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 {|row| row[0].text == row_title} end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
page-object-0.6.7 | lib/page-object/platforms/watir_webdriver/table.rb |