Sha256: 9ed0b4a1e2d7596c5a35d5ebbef45b9b22a5b4fe0f0623bc39b8d6f67725e8ee

Contents?: true

Size: 795 Bytes

Versions: 5

Compression:

Stored size: 795 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
          require 'page-object/platforms/selenium/link'
          self.class.send :include, PageObject::Platforms::Selenium::Link
        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/link.rb
page-object-0.2.4 lib/page-object/elements/link.rb
page-object-0.2.3 lib/page-object/elements/link.rb
page-object-0.2.2 lib/page-object/elements/link.rb
page-object-0.2.1 lib/page-object/elements/link.rb