Class: Capybara::Mechanize::Driver

Inherits:
RackTest::Driver
  • Object
show all
Defined in:
lib/capybara/mechanize/driver.rb

Instance Method Summary collapse

Constructor Details

#initialize(app, **options) ⇒ Driver

Returns a new instance of Driver.

Raises:

  • (ArgumentError)


5
6
7
8
9
# File 'lib/capybara/mechanize/driver.rb', line 5

def initialize(app, **options)
  raise ArgumentError, "mechanize requires a rack application, but none was given" unless app

  super
end

Instance Method Details

#browserObject



19
20
21
# File 'lib/capybara/mechanize/driver.rb', line 19

def browser
  @browser ||= Capybara::Mechanize::Browser.new(self)
end

#configure {|browser.agent| ... } ⇒ Object

Yields:



15
16
17
# File 'lib/capybara/mechanize/driver.rb', line 15

def configure(&block)
  yield(browser.agent) if block_given?
end

#remote?(url) ⇒ Boolean

Returns:

  • (Boolean)


11
12
13
# File 'lib/capybara/mechanize/driver.rb', line 11

def remote?(url)
  browser.remote?(url)
end

#reset!Object



23
24
25
26
# File 'lib/capybara/mechanize/driver.rb', line 23

def reset!
  @browser.agent.shutdown
  super
end