Sha256: 3772a912c4abb33591598920fd82a6be37a54049853611309c356524ee71ecc1

Contents?: true

Size: 1.09 KB

Versions: 5

Compression:

Stored size: 1.09 KB

Contents

require 'mixology'

module PageObject
  module Elements
    class TextField < Element

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

      protected

      def self.watir_finders
        super + [:tag_name]
      end

      def self.watir_mapping
        super.merge({:css => :tag_name})
      end

      def self.selenium_finders
        super + [:css]
      end

      def self.selenium_mapping
        super.merge({:tag_name => :css})
      end

      def include_platform_for platform
        super
        if platform[:platform] == :watir_webdriver
          require 'page-object/platforms/watir_webdriver/text_field'
          self.mixin PageObject::Platforms::WatirWebDriver::TextField
        elsif platform[:platform] == :selenium_webdriver
          require 'page-object/platforms/selenium_webdriver/text_field'
          self.mixin PageObject::Platforms::SeleniumWebDriver::TextField
        else
          raise ArgumentError, "expect platform to be :watir_webdriver or :selenium_webdriver"
        end
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
page-object-0.4.4 lib/page-object/elements/text_field.rb
page-object-0.4.3 lib/page-object/elements/text_field.rb
page-object-0.4.2 lib/page-object/elements/text_field.rb
page-object-0.4.1 lib/page-object/elements/text_field.rb
page-object-0.4.0 lib/page-object/elements/text_field.rb