2009-11-26 17:47:58 -05:00
|
|
|
module Capybara
|
2010-01-01 11:48:39 -05:00
|
|
|
|
2010-07-11 11:26:08 -04:00
|
|
|
##
|
|
|
|
#
|
2010-07-14 17:59:23 -04:00
|
|
|
# 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:
|
2010-07-11 11:26:08 -04:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
class Session
|
2011-03-25 09:22:47 -04:00
|
|
|
NODE_METHODS = [
|
2011-03-31 11:57:24 -04:00
|
|
|
: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,
|
2011-11-15 10:58:05 -05:00
|
|
|
:has_content?, :has_text?, :has_css?, :has_no_content?, :has_no_text?,
|
2012-07-21 16:44:10 -04:00
|
|
|
:has_no_css?, :has_no_xpath?, :resolve, :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?, :query, :assert_selector, :assert_no_selector
|
2009-12-29 22:05:38 -05:00
|
|
|
]
|
2011-03-25 09:22:47 -04:00
|
|
|
SESSION_METHODS = [
|
2011-03-31 11:57:24 -04:00
|
|
|
:body, :html, :current_url, :current_host, :evaluate_script, :source,
|
2012-07-21 16:44:10 -04:00
|
|
|
:visit, :within, :within_fieldset, :within_table, :within_frame,
|
|
|
|
:within_window, :current_path, :save_page, :save_and_open_page,
|
|
|
|
:save_screenshot, :reset_session!, :response_headers, :status_code
|
2011-03-25 09:22:47 -04:00
|
|
|
]
|
|
|
|
DSL_METHODS = NODE_METHODS + SESSION_METHODS
|
2010-01-11 17:14:52 -05:00
|
|
|
|
2012-07-13 08:57:43 -04:00
|
|
|
attr_reader :mode, :app, :server
|
2009-11-09 17:51:39 -05:00
|
|
|
|
2010-03-12 13:07:15 -05:00
|
|
|
def initialize(mode, app=nil)
|
2009-12-18 11:40:51 -05:00
|
|
|
@mode = mode
|
2009-11-26 17:47:58 -05:00
|
|
|
@app = app
|
2012-07-13 09:19:20 -04:00
|
|
|
if Capybara.run_server and @app and driver.needs_server?
|
|
|
|
@server = Capybara::Server.new(@app).boot
|
2012-07-13 07:29:02 -04:00
|
|
|
end
|
2009-11-16 14:13:06 -05:00
|
|
|
end
|
2010-01-01 11:48:39 -05:00
|
|
|
|
2009-11-26 17:47:58 -05:00
|
|
|
def driver
|
2010-07-29 09:20:11 -04:00
|
|
|
@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)
|
2009-11-26 17:47:58 -05:00
|
|
|
end
|
2009-11-15 07:40:50 -05:00
|
|
|
end
|
2009-11-26 17:47:58 -05:00
|
|
|
|
2010-07-11 11:26:08 -04:00
|
|
|
##
|
|
|
|
#
|
|
|
|
# Reset the session, removing all cookies.
|
|
|
|
#
|
2010-07-29 09:25:45 -04:00
|
|
|
def reset!
|
2012-07-10 04:03:05 -04:00
|
|
|
driver.reset! if @touched
|
|
|
|
@touched = false
|
2012-07-13 08:57:43 -04:00
|
|
|
raise @server.error if @server and @server.error
|
|
|
|
ensure
|
|
|
|
@server.reset_error! if @server
|
2010-07-11 08:00:00 -04:00
|
|
|
end
|
2010-07-29 09:25:45 -04:00
|
|
|
alias_method :cleanup!, :reset!
|
2011-04-15 06:39:14 -04:00
|
|
|
alias_method :reset_session!, :reset!
|
2009-11-26 17:47:58 -05:00
|
|
|
|
2010-07-11 11:26:08 -04:00
|
|
|
##
|
|
|
|
#
|
|
|
|
# Returns a hash of response headers. Not supported by all drivers (e.g. Selenium)
|
|
|
|
#
|
2010-07-14 18:24:59 -04:00
|
|
|
# @return [Hash{String => String}] A hash of response headers.
|
2010-07-11 11:26:08 -04:00
|
|
|
#
|
2010-07-11 08:00:00 -04:00
|
|
|
def response_headers
|
|
|
|
driver.response_headers
|
2009-12-13 09:03:19 -05:00
|
|
|
end
|
|
|
|
|
2010-07-11 11:26:08 -04:00
|
|
|
##
|
|
|
|
#
|
|
|
|
# Returns the current HTTP status code as an Integer. Not supported by all drivers (e.g. Selenium)
|
|
|
|
#
|
2010-07-14 18:24:59 -04:00
|
|
|
# @return [Integer] Current HTTP status code
|
2010-07-11 11:26:08 -04:00
|
|
|
#
|
2010-07-11 08:00:00 -04:00
|
|
|
def status_code
|
|
|
|
driver.status_code
|
2009-11-24 15:45:52 -05:00
|
|
|
end
|
2009-11-07 12:56:04 -05:00
|
|
|
|
2010-07-11 11:26:08 -04:00
|
|
|
##
|
|
|
|
#
|
2011-04-02 17:49:32 -04:00
|
|
|
# @return [String] A snapshot of the HTML of the current document, as it looks right now (potentially modified by JavaScript).
|
2010-07-11 11:26:08 -04:00
|
|
|
#
|
2011-11-15 10:58:05 -05:00
|
|
|
def html
|
2010-07-11 08:00:00 -04:00
|
|
|
driver.body
|
|
|
|
end
|
|
|
|
|
2010-07-11 11:26:08 -04:00
|
|
|
##
|
|
|
|
#
|
2010-07-14 18:24:59 -04:00
|
|
|
# @return [String] HTML source of the document, before being modified by JavaScript.
|
2010-07-11 11:26:08 -04:00
|
|
|
#
|
2010-07-11 08:00:00 -04:00
|
|
|
def source
|
|
|
|
driver.source
|
|
|
|
end
|
2011-11-15 10:58:05 -05:00
|
|
|
alias_method :body, :source
|
2010-07-11 08:00:00 -04:00
|
|
|
|
2010-07-11 11:26:08 -04:00
|
|
|
##
|
|
|
|
#
|
2010-07-14 18:24:59 -04:00
|
|
|
# @return [String] Path of the current page, without any domain information
|
2010-07-11 11:26:08 -04:00
|
|
|
#
|
2010-07-09 21:11:54 -04:00
|
|
|
def current_path
|
2011-04-07 11:08:32 -04:00
|
|
|
path = URI.parse(current_url).path
|
|
|
|
path if path and not path.empty?
|
2010-07-09 21:11:54 -04:00
|
|
|
end
|
|
|
|
|
2011-03-11 11:01:13 -05:00
|
|
|
##
|
|
|
|
#
|
|
|
|
# @return [String] Host of the current page
|
|
|
|
#
|
|
|
|
def current_host
|
2011-03-25 05:01:59 -04:00
|
|
|
uri = URI.parse(current_url)
|
2011-04-07 10:18:11 -04:00
|
|
|
"#{uri.scheme}://#{uri.host}" if uri.host
|
2011-03-11 11:01:13 -05:00
|
|
|
end
|
|
|
|
|
2010-07-11 11:26:08 -04:00
|
|
|
##
|
|
|
|
#
|
2010-07-14 18:24:59 -04:00
|
|
|
# @return [String] Fully qualified URL of the current page
|
2010-07-11 11:26:08 -04:00
|
|
|
#
|
|
|
|
def current_url
|
|
|
|
driver.current_url
|
|
|
|
end
|
|
|
|
|
|
|
|
##
|
|
|
|
#
|
|
|
|
# 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
|
|
|
|
#
|
2010-07-14 18:24:59 -04:00
|
|
|
# @param [String] url The URL to navigate to
|
2010-07-11 11:26:08 -04:00
|
|
|
#
|
2010-07-11 08:00:00 -04:00
|
|
|
def visit(url)
|
2012-07-10 04:03:05 -04:00
|
|
|
@touched = true
|
2012-07-13 07:29:02 -04:00
|
|
|
|
|
|
|
if @server
|
|
|
|
unless url =~ /^http/
|
|
|
|
url = (Capybara.app_host || "http://#{@server.host}:#{@server.port}") + url.to_s
|
|
|
|
end
|
|
|
|
|
|
|
|
if Capybara.always_include_port
|
|
|
|
uri = URI.parse(url)
|
|
|
|
uri.port = @server.port if uri.port == uri.default_port
|
|
|
|
url = uri.to_s
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-07-11 08:00:00 -04:00
|
|
|
driver.visit(url)
|
|
|
|
end
|
|
|
|
|
2010-07-11 11:26:08 -04:00
|
|
|
##
|
|
|
|
#
|
2010-07-14 17:59:23 -04:00
|
|
|
# Execute the given block for a particular scope on the page. Within will find the first
|
2010-07-11 11:26:08 -04:00
|
|
|
# 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
|
|
|
|
#
|
2011-08-26 13:36:51 -04:00
|
|
|
# @overload within(*find_args)
|
|
|
|
# @param (see Capybara::Node::Finders#all)
|
|
|
|
#
|
|
|
|
# @overload within(a_node)
|
|
|
|
# @param [Capybara::Node::Base] a_node The node in whose scope the block should be evaluated
|
|
|
|
#
|
2010-12-22 10:15:06 -05:00
|
|
|
# @raise [Capybara::ElementNotFound] If the scope can't be found before time expires
|
2010-07-11 11:26:08 -04:00
|
|
|
#
|
2010-12-22 10:15:06 -05:00
|
|
|
def within(*args)
|
2011-08-26 13:36:51 -04:00
|
|
|
new_scope = if args.size == 1 && Capybara::Node::Base === args.first
|
|
|
|
args.first
|
|
|
|
else
|
|
|
|
find(*args)
|
|
|
|
end
|
2010-02-11 15:46:31 -05:00
|
|
|
begin
|
2010-07-09 19:38:57 -04:00
|
|
|
scopes.push(new_scope)
|
2010-02-11 15:46:31 -05:00
|
|
|
yield
|
|
|
|
ensure
|
|
|
|
scopes.pop
|
|
|
|
end
|
2009-11-26 17:47:58 -05:00
|
|
|
end
|
2009-11-14 09:11:29 -05:00
|
|
|
|
2010-07-11 11:26:08 -04:00
|
|
|
##
|
|
|
|
#
|
|
|
|
# Execute the given block within the a specific fieldset given the id or legend of that fieldset.
|
|
|
|
#
|
2010-07-14 18:24:59 -04:00
|
|
|
# @param [String] locator Id or legend of the fieldset
|
2010-07-11 11:26:08 -04:00
|
|
|
#
|
2009-11-26 17:47:58 -05:00
|
|
|
def within_fieldset(locator)
|
2011-08-27 17:57:12 -04:00
|
|
|
within :fieldset, locator do
|
2009-11-26 17:47:58 -05:00
|
|
|
yield
|
|
|
|
end
|
2009-11-10 16:48:31 -05:00
|
|
|
end
|
|
|
|
|
2010-07-11 11:26:08 -04:00
|
|
|
##
|
|
|
|
#
|
|
|
|
# Execute the given block within the a specific table given the id or caption of that table.
|
|
|
|
#
|
2010-07-14 18:24:59 -04:00
|
|
|
# @param [String] locator Id or caption of the table
|
2010-07-11 11:26:08 -04:00
|
|
|
#
|
2009-11-26 17:47:58 -05:00
|
|
|
def within_table(locator)
|
2011-08-27 17:57:12 -04:00
|
|
|
within :table, locator do
|
2009-11-26 17:47:58 -05:00
|
|
|
yield
|
|
|
|
end
|
|
|
|
end
|
2010-01-01 12:29:30 -05:00
|
|
|
|
2010-07-11 11:26:08 -04:00
|
|
|
##
|
|
|
|
#
|
|
|
|
# Execute the given block within the given iframe given the id of that iframe. Only works on
|
|
|
|
# some drivers (e.g. Selenium)
|
|
|
|
#
|
2012-07-09 11:56:20 -04:00
|
|
|
# @param [String] frame_id Id of the frame
|
2010-07-11 11:26:08 -04:00
|
|
|
#
|
2010-05-09 10:51:11 -04:00
|
|
|
def within_frame(frame_id)
|
2010-04-28 19:03:13 -04:00
|
|
|
driver.within_frame(frame_id) do
|
2009-11-26 17:47:58 -05:00
|
|
|
yield
|
|
|
|
end
|
2010-08-27 15:00:08 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
##
|
|
|
|
#
|
2010-08-28 12:50:34 -04:00
|
|
|
# Execute the given block within the given window. Only works on
|
2010-08-27 15:00:08 -04:00
|
|
|
# some drivers (e.g. Selenium)
|
|
|
|
#
|
2012-07-09 11:56:20 -04:00
|
|
|
# @param [String] handle of the window
|
2010-08-27 15:00:08 -04:00
|
|
|
#
|
2010-08-28 12:50:34 -04:00
|
|
|
def within_window(handle, &blk)
|
|
|
|
driver.within_window(handle, &blk)
|
2009-11-26 17:47:58 -05:00
|
|
|
end
|
2010-01-01 12:29:30 -05:00
|
|
|
|
2010-07-11 11:26:08 -04:00
|
|
|
##
|
|
|
|
#
|
|
|
|
# Execute the given script, not returning a result. This is useful for scripts that return
|
2011-12-08 14:59:17 -05:00
|
|
|
# complex objects, such as jQuery statements. +execute_script+ should be used over
|
2010-07-11 11:26:08 -04:00
|
|
|
# +evaluate_script+ whenever possible.
|
|
|
|
#
|
2010-07-14 18:24:59 -04:00
|
|
|
# @param [String] script A string of JavaScript to execute
|
2010-07-11 11:26:08 -04:00
|
|
|
#
|
2010-07-09 19:42:59 -04:00
|
|
|
def execute_script(script)
|
2012-07-10 04:03:05 -04:00
|
|
|
@touched = true
|
2010-07-09 19:42:59 -04:00
|
|
|
driver.execute_script(script)
|
|
|
|
end
|
|
|
|
|
2010-07-11 11:26:08 -04:00
|
|
|
##
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
2010-07-14 18:24:59 -04:00
|
|
|
# @param [String] script A string of JavaScript to evaluate
|
|
|
|
# @return [Object] The result of the evaluated JavaScript (may be driver specific)
|
2010-07-11 11:26:08 -04:00
|
|
|
#
|
2010-07-09 19:42:59 -04:00
|
|
|
def evaluate_script(script)
|
2012-07-10 04:03:05 -04:00
|
|
|
@touched = true
|
2010-07-09 19:42:59 -04:00
|
|
|
driver.evaluate_script(script)
|
|
|
|
end
|
|
|
|
|
2010-07-11 11:26:08 -04:00
|
|
|
##
|
|
|
|
#
|
2012-07-24 03:05:50 -04:00
|
|
|
# Save a snapshot of the page.
|
|
|
|
#
|
|
|
|
# @param [String] path The path to where it should be saved [optional]
|
2010-07-11 11:26:08 -04:00
|
|
|
#
|
2012-07-24 03:05:50 -04:00
|
|
|
def save_page(path=nil)
|
|
|
|
path ||= "capybara-#{Time.new.strftime("%Y%m%d%H%M%S")}#{rand(10**10)}.html"
|
|
|
|
path = File.expand_path(path, Capybara.save_and_open_page_path) if Capybara.save_and_open_page_path
|
|
|
|
|
|
|
|
FileUtils.mkdir_p(File.dirname(path))
|
|
|
|
|
|
|
|
File.open(path,'w') { |f| f.write(body) }
|
|
|
|
path
|
2011-02-12 15:18:47 -05:00
|
|
|
end
|
|
|
|
|
2012-07-24 03:05:50 -04:00
|
|
|
##
|
|
|
|
#
|
|
|
|
# Save a snapshot of the page and open it in a browser for inspection
|
|
|
|
#
|
|
|
|
# @param [String] path The path to where it should be saved [optional]
|
|
|
|
#
|
2012-06-08 04:24:41 -04:00
|
|
|
def save_and_open_page(file_name=nil)
|
2012-07-24 03:05:50 -04:00
|
|
|
require "launchy"
|
|
|
|
Launchy.open(save_page(file_name))
|
|
|
|
rescue LoadError
|
|
|
|
warn "Please install the launchy gem to open page with save_and_open_page"
|
2010-07-09 19:42:59 -04:00
|
|
|
end
|
|
|
|
|
2012-07-10 00:50:15 -04:00
|
|
|
##
|
|
|
|
#
|
|
|
|
# Save a screenshot of page
|
|
|
|
#
|
|
|
|
# @param [String] path A string of image path
|
|
|
|
# @option [Hash] options Options for saving screenshot
|
|
|
|
def save_screenshot(path, options={})
|
|
|
|
driver.save_screenshot(path, options)
|
|
|
|
end
|
|
|
|
|
2010-07-11 08:00:00 -04:00
|
|
|
def document
|
2011-07-13 09:39:17 -04:00
|
|
|
@document ||= Capybara::Node::Document.new(self, driver)
|
2010-07-11 08:00:00 -04:00
|
|
|
end
|
|
|
|
|
2011-03-25 09:22:47 -04:00
|
|
|
NODE_METHODS.each do |method|
|
2012-04-11 09:37:48 -04:00
|
|
|
class_eval <<-RUBY, __FILE__, __LINE__+1
|
2011-03-25 09:22:47 -04:00
|
|
|
def #{method}(*args, &block)
|
2012-07-10 04:03:05 -04:00
|
|
|
@touched = true
|
2011-03-25 09:22:47 -04:00
|
|
|
current_node.send(:#{method}, *args, &block)
|
|
|
|
end
|
|
|
|
RUBY
|
2010-07-11 08:00:00 -04:00
|
|
|
end
|
|
|
|
|
2011-07-20 16:55:06 -04:00
|
|
|
def inspect
|
|
|
|
%(#<Capybara::Session>)
|
|
|
|
end
|
|
|
|
|
2009-11-26 17:47:58 -05:00
|
|
|
private
|
|
|
|
|
2010-07-09 19:38:57 -04:00
|
|
|
def current_node
|
|
|
|
scopes.last
|
2009-11-26 17:47:58 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def scopes
|
2010-07-09 19:38:57 -04:00
|
|
|
@scopes ||= [document]
|
2009-11-26 17:47:58 -05:00
|
|
|
end
|
2009-11-14 09:11:29 -05:00
|
|
|
end
|
2009-11-07 09:36:58 -05:00
|
|
|
end
|