Sha256: 0f36f3032e2b83f518c9c43cd515145ad8d7dbe8c67c66cb30c50f00e2f4f62f

Contents?: true

Size: 919 Bytes

Versions: 5

Compression:

Stored size: 919 Bytes

Contents

module PageObject
  module Elements
    class Link < Element

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

      protected

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

      def self.watir_mapping
        super.merge({:link => :text, :link_text => :text})
      end

      def self.selenium_finders
        super + [:link, :link_text, :css]
      end

      def self.selenium_mapping
        super.merge(:text => :link_text)
      end

      def include_platform_for platform
        super
        if platform[:platform] == :selenium_webdriver
          require 'page-object/platforms/selenium_webdriver/link'
          self.class.send :include, PageObject::Platforms::SeleniumWebDriver::Link
        end
      end
    end
    
    ::PageObject::Elements.tag_to_class[:a] = ::PageObject::Elements::Link

  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
page-object-0.6.8 lib/page-object/elements/link.rb
page-object-0.6.7 lib/page-object/elements/link.rb
page-object-0.6.6 lib/page-object/elements/link.rb
page-object-0.6.5 lib/page-object/elements/link.rb
page-object-0.6.4 lib/page-object/elements/link.rb