class Chemlab::Runtime::Browser

The browser configurator

Attributes

browser_options[R]
session[RW]

Public Class Methods

navigate_to(page_class) click to toggle source
new(browser_options) click to toggle source
# File lib/chemlab/runtime/browser.rb, line 15
def initialize(browser_options)
  @browser_options = browser_options
  @session = Session.new(browser_options)
end

Public Instance Methods

navigate_to(path) click to toggle source
to_s() click to toggle source

The options used to create the browser session

# File lib/chemlab/runtime/browser.rb, line 30
def to_s
  @browser_options.to_s
end