Sha256: a6c5b73f8a34e92c940dbb68fe737d89c5511adc6ad7ac617e9340a7c8b9b952

Contents?: true

Size: 884 Bytes

Versions: 5

Compression:

Stored size: 884 Bytes

Contents

module PageObject
  module Elements
    class SelectList < Element

      def initialize(element, platform)
        @element = element
        include_platform_for platform
      end

      protected

      def child_xpath
        ".//child::option"
      end

      def self.watir_finders
        super + [:text, :value]
      end

      def include_platform_for platform
        super
        if platform[:platform] == :watir
          require 'page-object/platforms/watir/select_list'
          self.class.send :include, PageObject::Platforms::Watir::SelectList
        elsif platform[:platform] == :selenium
          require 'page-object/platforms/selenium/select_list'
          self.class.send :include, PageObject::Platforms::Selenium::SelectList
        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

Version Path
page-object-0.2.5 lib/page-object/elements/select_list.rb
page-object-0.2.4 lib/page-object/elements/select_list.rb
page-object-0.2.3 lib/page-object/elements/select_list.rb
page-object-0.2.2 lib/page-object/elements/select_list.rb
page-object-0.2.1 lib/page-object/elements/select_list.rb