Sha256: fb96632f2e6e5fca84a4c1d6c39a7064dfb0c1bef3efc14ca4644fc337ab77b0
Contents?: true
Size: 1.05 KB
Versions: 5
Compression:
Stored size: 1.05 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::Watir::TableRow elsif platform[:platform] == :selenium require 'page-object/platforms/selenium/table_row' self.class.send :include, PageObject::Platforms::Selenium::TableRow else raise ArgumentError, "expect platform to be :watir or :selenium" end end end end end
Version data entries
5 entries across 5 versions & 1 rubygems