Sha256: ec064846446c4af16f2583bdde05578e0d1e9498230a4f225aa536c0a41854ba

Contents?: true

Size: 468 Bytes

Versions: 1

Compression:

Stored size: 468 Bytes

Contents

module Symbiont
  module Platforms
    module WatirWebDriver

      class PlatformObject

        def initialize(browser)
          @browser = browser
        end

        # Platform method to make a call to a specified URL.
        # See Symbiont::Generators#url_is
        def visit(url)
          @browser.goto(url)
        end

      end # class: PlatformObject

    end # module: WatirWebDriver
  end # module: Platforms
end # module: Symbiont

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
symbiont-0.0.1 lib/symbiont/platform_watir/platform_object.rb