Sha256: 51a715ddc18e7be7cc008cec1fb99e596288b537c33d4c28bff23eebabceb520
Contents?: true
Size: 1.07 KB
Versions: 4
Compression:
Stored size: 1.07 KB
Contents
module PageObject module Elements class TableRow < Element include Enumerable def initialize(element, platform) @element = element include_platform_for platform end # # iterator that yields with a PageObject::Elements::TableCell # # @return [PageObject::Elements::TableCell] # def each for index in 1..self.columns do yield self[index-1] end end protected def child_xpath ".//child::td|th" end def include_platform_for platform super if platform[:platform] == :watir require 'page-object/platforms/watir_table_row' self.class.send :include, PageObject::Platforms::WatirTableRow elsif platform[:platform] == :selenium require 'page-object/platforms/selenium_table_row' self.class.send :include, PageObject::Platforms::SeleniumTableRow else raise ArgumentError, "expect platform to be :watir or :selenium" end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems