Sha256: d2f83bc315664ec583db458b447f97d1274deade1c979acf496ebe9155174cd8

Contents?: true

Size: 334 Bytes

Versions: 5

Compression:

Stored size: 334 Bytes

Contents

module Fluent
  module Platforms
    module MechanizeDriver
      class PlatformObject

        attr_reader :driver

        def initialize(driver)
          @driver = driver
        end

        ## Browser-Level Actions ##

        def visit(url)
          driver.get(url)
        end

      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
fluent-0.7.1 lib/fluent/platform_mechanize/platform_object.rb
fluent-0.7.0 lib/fluent/platform_mechanize/platform_object.rb
fluent-0.6.0 lib/fluent/platform_mechanize/platform_object.rb
fluent-0.5.0 lib/fluent/platform_mechanize/platform_object.rb
fluent-0.4.0 lib/fluent/platform_mechanize/platform_object.rb