Sha256: 879d1397aeaa8bf32e797f90912bdcd836d1026f69754e756b324de99c13713b

Contents?: true

Size: 365 Bytes

Versions: 2

Compression:

Stored size: 365 Bytes

Contents

module Fluent
  module Platforms
    module SeleniumWebDriver
      class PlatformObject

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

        ## Browser-Level Actions ##

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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
fluent-0.3.0 lib/fluent/platform_selenium/platform_object.rb
fluent-0.2.0 lib/fluent/platform_selenium/platform_object.rb