Sha256: 67424bcaf8ffddcd0b0c7c667499c161daead35627e91368de7e9c3acdd33d97

Contents?: true

Size: 457 Bytes

Versions: 3

Compression:

Stored size: 457 Bytes

Contents

module Fluent
  module Platforms
    module WatirWebDriver
      
      def self.create_platform_object_for(browser)
        require 'fluent/platform_watir/platform_object'
        return WatirWebDriver::PlatformObject.new(browser)
      end
      
      def self.works_with?(browser)
        browser.is_a?(::Watir::Browser)
      end
      
    end
  end
end

Fluent::Platforms.register(:watir_webdriver, Fluent::Platforms::WatirWebDriver)

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
fluent-0.3.0 lib/fluent/platform_watir.rb
fluent-0.2.0 lib/fluent/platform_watir.rb
fluent-0.1.0 lib/fluent/platform_watir.rb