Sha256: bc641525e547bcc9e8242907c3eb4d56cfc0f49c272ab1a88841116cc782aba6

Contents?: true

Size: 1.06 KB

Versions: 4

Compression:

Stored size: 1.06 KB

Contents

module PageObject
  module Elements
    class Table < Element
      include Enumerable
      
      def initialize(element, platform)
        @element = element
        include_platform_for platform
      end
      
      #
      # iterator that yields with a PageObject::Elements::TableRow
      #
      # @return [PageObject::Elements::TableRow]
      #
      def each
        for index in 1..self.rows do
          yield self[index-1] 
        end
      end
      
      protected
      
      def child_xpath
        ".//child::tr"
      end
      
      def include_platform_for platform
        super
        if platform[:platform] == :watir
          require 'page-object/platforms/watir_table'
          self.class.send :include, PageObject::Platforms::WatirTable
        elsif platform[:platform] == :selenium
          require 'page-object/platforms/selenium_table'
          self.class.send :include, PageObject::Platforms::SeleniumTable
        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

Version Path
page-object-0.2 lib/page-object/elements/table.rb
page-object-0.1.1 lib/page-object/elements/table.rb
page-object-0.1 lib/page-object/elements/table.rb
page-object-0.0.5 lib/page-object/elements/table.rb