Sha256: 27d217a8d897d6a0068499d90cea9f22f20d92950c5e5147940fd97788ed77a5
Contents?: true
Size: 1.01 KB
Versions: 1
Compression:
Stored size: 1.01 KB
Contents
module PageObject module Platforms module SeleniumWebDriver 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. # def [](idx) els = table_cells idx = find_index_by_title(idx) if idx.kind_of?(String) Object::PageObject::Elements::TableCell.new(els[idx], :platform => :selenium_webdriver) end # # Returns the number of columns in the table. # def columns table_cells.size end private def find_index_by_title(title) table = parent table = table.parent if parent.element.tag_name == 'tbody' table[0].find_index {|column| column.text == title} end def table_cells element.find_elements(:xpath, child_xpath) 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/selenium_webdriver/table_row.rb |