Sha256: f8111893f81d48f97c3d3a8c2bea31512f57129ea2d3ad6dc21b4148d1e5ae40

Contents?: true

Size: 826 Bytes

Versions: 5

Compression:

Stored size: 826 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]
      end

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

      def self.selenium_finders
        super + [:link, :link_text]
      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
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
page-object-0.5.4 lib/page-object/elements/link.rb
page-object-0.5.3 lib/page-object/elements/link.rb
page-object-0.5.2 lib/page-object/elements/link.rb
page-object-0.5.1 lib/page-object/elements/link.rb
page-object-0.5.0 lib/page-object/elements/link.rb