Class: Capybara::Session

Inherits:
Object
  • Object
show all
Defined in:
lib/capybara/session.rb

Overview

The Session class represents a single user’s interaction with the system. The Session can use any of the underlying drivers. A session can be initialized manually like this:

session = Capybara::Session.new(:culerity, MyRackApp)

The application given as the second argument is optional. When running Capybara against an external page, you might want to leave it out:

session = Capybara::Session.new(:culerity)
session.visit('http://www.google.com')

Session provides a number of methods for controlling the navigation of the page, such as visit, +current_path, and so on. It also delegate a number of methods to a Capybara::Document, representing the current HTML document. This allows interaction:

session.fill_in('q', :with => 'Capybara')
session.click_button('Search')
session.should have_content('Capybara')

When using capybara/dsl, the Session is initialized automatically for you.

Constant Summary collapse

NODE_METHODS =
[
  :all, :first, :attach_file, :text, :check, :choose,
  :click_link_or_button, :click_button, :click_link, :field_labeled,
  :fill_in, :find, :find_button, :find_by_id, :find_field, :find_link,
  :has_content?, :has_css?, :has_no_content?, :has_no_css?, :has_no_xpath?,
  :has_xpath?, :select, :uncheck, :has_link?, :has_no_link?, :has_button?,
  :has_no_button?, :has_field?, :has_no_field?, :has_checked_field?,
  :has_unchecked_field?, :has_no_table?, :has_table?, :unselect,
  :has_select?, :has_no_select?, :has_selector?, :has_no_selector?,
  :click_on, :has_no_checked_field?, :has_no_unchecked_field?
]
SESSION_METHODS =
[
  :body, :html, :current_url, :current_host, :evaluate_script, :source,
  :visit, :wait_until, :within, :within_fieldset, :within_table,
  :within_frame, :within_window, :current_path, :save_page,
  :save_and_open_page, :reset_session!
]
DSL_METHODS =
NODE_METHODS + SESSION_METHODS

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(mode, app = nil) ⇒ Session

Returns a new instance of Session.



50
51
52
53
# File 'lib/capybara/session.rb', line 50

def initialize(mode, app=nil)
  @mode = mode
  @app = app
end

Instance Attribute Details

#appObject (readonly)

Returns the value of attribute app.



48
49
50
# File 'lib/capybara/session.rb', line 48

def app
  @app
end

#modeObject (readonly)

Returns the value of attribute mode.



48
49
50
# File 'lib/capybara/session.rb', line 48

def mode
  @mode
end

Instance Method Details

#bodyString Also known as: html

Returns A snapshot of the HTML of the current document, as it looks right now (potentially modified by JavaScript).

Returns:

  • (String)

    A snapshot of the HTML of the current document, as it looks right now (potentially modified by JavaScript).



99
100
101
# File 'lib/capybara/session.rb', line 99

def body
  driver.body
end

#current_hostString

Returns Host of the current page.

Returns:

  • (String)

    Host of the current page



125
126
127
128
# File 'lib/capybara/session.rb', line 125

def current_host
  uri = URI.parse(current_url)
  "#{uri.scheme}://#{uri.host}" if uri.host
end

#current_pathString

Returns Path of the current page, without any domain information.

Returns:

  • (String)

    Path of the current page, without any domain information



116
117
118
119
# File 'lib/capybara/session.rb', line 116

def current_path
  path = URI.parse(current_url).path
  path if path and not path.empty?
end

#current_urlString

Returns Fully qualified URL of the current page.

Returns:

  • (String)

    Fully qualified URL of the current page



134
135
136
# File 'lib/capybara/session.rb', line 134

def current_url
  driver.current_url
end

#documentObject



295
296
297
# File 'lib/capybara/session.rb', line 295

def document
  @document ||= Capybara::Node::Document.new(self, driver)
end

#driverObject



55
56
57
58
59
60
61
62
63
# File 'lib/capybara/session.rb', line 55

def driver
  @driver ||= begin
    unless Capybara.drivers.has_key?(mode)
      other_drivers = Capybara.drivers.keys.map { |key| key.inspect }
      raise Capybara::DriverNotFoundError, "no driver called #{mode.inspect} was found, available drivers: #{other_drivers.join(', ')}"
    end
    Capybara.drivers[mode].call(app)
  end
end

#evaluate_script(script) ⇒ Object

Evaluate the given JavaScript and return the result. Be careful when using this with scripts that return complex objects, such as jQuery statements. execute_script might be a better alternative.

Parameters:

  • script (String)

    A string of JavaScript to evaluate

Returns:

  • (Object)

    The result of the evaluated JavaScript (may be driver specific)



277
278
279
# File 'lib/capybara/session.rb', line 277

def evaluate_script(script)
  driver.evaluate_script(script)
end

#execute_script(script) ⇒ Object

Execute the given script, not returning a result. This is useful for scripts that return complex objects, such as jQuery statements. execute_script should always be used over evaluate_script whenever possible.

Parameters:

  • script (String)

    A string of JavaScript to execute



264
265
266
# File 'lib/capybara/session.rb', line 264

def execute_script(script)
  driver.execute_script(script)
end

#inspectObject



307
308
309
# File 'lib/capybara/session.rb', line 307

def inspect
  %(#<Capybara::Session>)
end

#reset!Object Also known as: cleanup!, reset_session!

Reset the session, removing all cookies.



69
70
71
# File 'lib/capybara/session.rb', line 69

def reset!
  driver.reset!
end

#response_headersHash{String => String}

Returns a hash of response headers. Not supported by all drivers (e.g. Selenium)

Returns:

  • (Hash{String => String})

    A hash of response headers.



81
82
83
# File 'lib/capybara/session.rb', line 81

def response_headers
  driver.response_headers
end

#save_and_open_pageObject



290
291
292
293
# File 'lib/capybara/session.rb', line 290

def save_and_open_page
  require 'capybara/util/save_and_open_page'
  Capybara.save_and_open_page(body)
end

#save_pageObject

Save a snapshot of the page and open it in a browser for inspection



285
286
287
288
# File 'lib/capybara/session.rb', line 285

def save_page
  require 'capybara/util/save_and_open_page'
  Capybara.save_page(body)
end

#sourceString

Returns HTML source of the document, before being modified by JavaScript.

Returns:

  • (String)

    HTML source of the document, before being modified by JavaScript.



108
109
110
# File 'lib/capybara/session.rb', line 108

def source
  driver.source
end

#status_codeInteger

Returns the current HTTP status code as an Integer. Not supported by all drivers (e.g. Selenium)

Returns:

  • (Integer)

    Current HTTP status code



91
92
93
# File 'lib/capybara/session.rb', line 91

def status_code
  driver.status_code
end

#visit(url) ⇒ Object

Navigate to the given URL. The URL can either be a relative URL or an absolute URL The behaviour of either depends on the driver.

session.visit('/foo')
session.visit('http://google.com')

For drivers which can run against an external application, such as culerity and selenium giving an absolute URL will navigate to that page. This allows testing applications running on remote servers. For these drivers, setting Capybara.app_host will make the remote server the default. For example:

Capybara.app_host = 'http://google.com'
session.visit('/') # visits the google homepage

Parameters:

  • url (String)

    The URL to navigate to



156
157
158
# File 'lib/capybara/session.rb', line 156

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

#wait_until(timeout = Capybara.default_wait_time) ⇒ Object

Retry executing the block until a truthy result is returned or the timeout time is exceeded

Parameters:

  • timeout (Integer) (defaults to: Capybara.default_wait_time)

    The amount of seconds to retry executing the given block



252
253
254
# File 'lib/capybara/session.rb', line 252

def wait_until(timeout = Capybara.default_wait_time)
  Capybara.timeout(timeout,driver) { yield }
end

#within(*find_args) ⇒ Object #within(a_node) ⇒ Object

Execute the given block for a particular scope on the page. Within will find the first element matching the given selector and execute the block scoped to that element:

within(:xpath, '//div[@id="delivery-address"]') do
  fill_in('Street', :with => '12 Main Street')
end

It is possible to omit the first parameter, in that case, the selector is assumed to be of the type set in Capybara.default_selector.

within('div#delivery-address') do
  fill_in('Street', :with => '12 Main Street')
end

Overloads:

  • #within(*find_args) ⇒ Object

    Parameters:

    • kind_or_locator (:css, :xpath, String)

      Either the kind of selector or the selector itself

    • locator (String)

      The selector

    • options (Hash{Symbol => Object})

      Additional options

  • #within(a_node) ⇒ Object

    Parameters:

Raises:



184
185
186
187
188
189
190
191
192
193
194
195
196
# File 'lib/capybara/session.rb', line 184

def within(*args)
  new_scope = if args.size == 1 && Capybara::Node::Base === args.first
                args.first
              else
                find(*args)
              end
  begin
    scopes.push(new_scope)
    yield
  ensure
    scopes.pop
  end
end

#within_fieldset(locator) ⇒ Object

Execute the given block within the a specific fieldset given the id or legend of that fieldset.

Parameters:

  • locator (String)

    Id or legend of the fieldset



204
205
206
207
208
# File 'lib/capybara/session.rb', line 204

def within_fieldset(locator)
  within :xpath, XPath::HTML.fieldset(locator) do
    yield
  end
end

#within_frame(frame_id) ⇒ Object

Execute the given block within the given iframe given the id of that iframe. Only works on some drivers (e.g. Selenium)

Parameters:

  • locator (String)

    Id of the frame



229
230
231
232
233
# File 'lib/capybara/session.rb', line 229

def within_frame(frame_id)
  driver.within_frame(frame_id) do
    yield
  end
end

#within_table(locator) ⇒ Object

Execute the given block within the a specific table given the id or caption of that table.

Parameters:

  • locator (String)

    Id or caption of the table



216
217
218
219
220
# File 'lib/capybara/session.rb', line 216

def within_table(locator)
  within :xpath, XPath::HTML.table(locator) do
    yield
  end
end

#within_window(handle, &blk) ⇒ Object

Execute the given block within the given window. Only works on some drivers (e.g. Selenium)

Parameters:

  • locator (String)

    of the window



242
243
244
# File 'lib/capybara/session.rb', line 242

def within_window(handle, &blk)
  driver.within_window(handle, &blk)
end