Sha256: 6194bc35da87b993084ad3ae2e0afe572752fb06af76e792b7e8ccdcde6f0781

Contents?: true

Size: 464 Bytes

Versions: 10

Compression:

Stored size: 464 Bytes

Contents

module Fluent
  module WebElements
    class Cell < 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[:td] = ::Fluent::WebElements::Cell
    ::Fluent::WebElements.class_for_tag[:th] = ::Fluent::WebElements::Cell
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
fluent-0.7.5 lib/fluent/web_elements/cell.rb
fluent-0.7.4 lib/fluent/web_elements/cell.rb
fluent-0.7.3 lib/fluent/web_elements/cell.rb
fluent-0.7.2 lib/fluent/web_elements/cell.rb
fluent-0.7.1 lib/fluent/web_elements/cell.rb
fluent-0.7.0 lib/fluent/web_elements/cell.rb
fluent-0.6.0 lib/fluent/web_elements/cell.rb
fluent-0.5.0 lib/fluent/web_elements/cell.rb
fluent-0.4.0 lib/fluent/web_elements/cell.rb
fluent-0.3.0 lib/fluent/web_elements/cell.rb