Sha256: 771ea6ab3a747cbabd99b0b92bfe89638938a97c944efa8ee822523c951acee5

Contents?: true

Size: 360 Bytes

Versions: 9

Compression:

Stored size: 360 Bytes

Contents

module Fluent
  module Platforms
    module SeleniumWebDriver
      class PlatformObject

        attr_reader :driver
        
        def initialize(driver)
          @driver = driver
        end

        ## Browser-Level Actions ##

        def visit(url)
          driver.navigate.to(url)
        end
        
      end
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
fluent-0.7.5 lib/fluent/platform_selenium/platform_object.rb
fluent-0.7.4 lib/fluent/platform_selenium/platform_object.rb
fluent-0.7.3 lib/fluent/platform_selenium/platform_object.rb
fluent-0.7.2 lib/fluent/platform_selenium/platform_object.rb
fluent-0.7.1 lib/fluent/platform_selenium/platform_object.rb
fluent-0.7.0 lib/fluent/platform_selenium/platform_object.rb
fluent-0.6.0 lib/fluent/platform_selenium/platform_object.rb
fluent-0.5.0 lib/fluent/platform_selenium/platform_object.rb
fluent-0.4.0 lib/fluent/platform_selenium/platform_object.rb