Sha256: 68f59a81c76ccbf1cda3b8105ea30f14e2404165a43d5ccd625ab7d72e03679e

Contents?: true

Size: 391 Bytes

Versions: 3

Compression:

Stored size: 391 Bytes

Contents

module Fluent
  module WebElements
    class Image < WebElement

      def initialize(web_element, platform)
        @web_element = web_element
        include_platform_specifics_for platform
      end

      def include_platform_specifics_for(platform)
        super
      end

    end

    ::Fluent::WebElements.class_for_tag[:img] = ::Fluent::WebElements::Image
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
fluent-0.5.0 lib/fluent/web_elements/image.rb
fluent-0.4.0 lib/fluent/web_elements/image.rb
fluent-0.3.0 lib/fluent/web_elements/image.rb