Class: Capybara::Session
Relationships & Source Files | |
Super Chains via Extension / Inclusion / Inheritance | |
Instance Chain:
|
|
Inherits: | Object |
Defined in: | lib/capybara/session.rb, lib/capybara/minitest/spec.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')
When threadsafe is true
the sessions options will be initially set to the current values of the global options and a configuration block can be passed to the session initializer. For available options see Config::OPTIONS:
session = Capybara::Session.new(:driver, MyRackApp) do |config|
config.app_host = "http://my_host.dev"
end
The Session
provides a number of methods for controlling the navigation of the page, such as #visit, #current_path, and so on. It also delegates a number of methods to a Capybara::Document
, representing the current HTML document. This allows interaction:
session.fill_in('q', with: 'Capybara')
session. ('Search')
expect(session).to have_content('Capybara')
When using capybara/dsl
, the Session
is initialized automatically for you.
Constant Summary
-
DOCUMENT_METHODS =
Internal use only
# File 'lib/capybara/session.rb', line 58%i[ title assert_title assert_no_title has_title? has_no_title? ].freeze
-
DSL_METHODS =
# File 'lib/capybara/session.rb', line 74NODE_METHODS + SESSION_METHODS + MODAL_METHODS
-
MODAL_METHODS =
# File 'lib/capybara/session.rb', line 71%i[ accept_alert accept_confirm dismiss_confirm accept_prompt dismiss_prompt ].freeze
-
NODE_METHODS =
# File 'lib/capybara/session.rb', line 41%i[ all first attach_file text check choose scroll_to scroll_by click double_click right_click click_link_or_button click_button click_link fill_in find find_all find_button find_by_id find_field find_link has_content? has_text? has_css? has_no_content? has_no_text? has_no_css? has_no_xpath? has_xpath? select uncheck has_element? has_no_element? 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 assert_all_of_selectors assert_none_of_selectors assert_any_of_selectors refute_selector assert_text assert_no_text ].freeze
-
SESSION_METHODS =
# File 'lib/capybara/session.rb', line 61%i[ body html source current_url current_host current_path execute_script evaluate_script evaluate_async_script visit refresh go_back go_forward send_keys within within_element within_fieldset within_table within_frame switch_to_frame current_window windows open_new_window switch_to_window within_window window_opened_by save_page save_and_open_page save_screenshot save_and_open_screenshot reset_session! response_headers status_code current_scope assert_current_path assert_no_current_path has_current_path? has_no_current_path? ].freeze + DOCUMENT_METHODS
Class Attribute Summary
- .instance_created? ⇒ Boolean readonly
Class Method Summary
- .new(mode, app = nil) ⇒ Session constructor
Instance Attribute Summary
- #app readonly
- #mode readonly
- #server readonly
- #synchronized rw
Instance Method Summary
-
#accept_alert(text, **options) { ... } ⇒ String
Execute the block, accepting a alert.
-
#accept_confirm(text, **options) { ... } ⇒ String
Execute the block, accepting a confirm.
-
#accept_prompt(text, **options) { ... } ⇒ String
Execute the block, accepting a prompt, optionally responding to the prompt.
-
#active_element
Returns the element with focus.
-
#body
Alias for #html.
-
#cleanup!
Alias for #reset!.
- #config
-
#configure {|config| ... }
Accepts a block to set the configuration options if threadsafe is
true
. - #current_host ⇒ String
- #current_path ⇒ String
- #current_scope
- #current_url ⇒ String
- #current_window ⇒ Capybara::Window
-
#dismiss_confirm(text, **options) { ... } ⇒ String
Execute the block, dismissing a confirm.
-
#dismiss_prompt(text, **options) { ... } ⇒ String
Execute the block, dismissing a prompt.
- #document
- #driver
-
#evaluate_async_script(script, *args) ⇒ Object
Evaluate the given JavaScript and obtain the result from a callback function which will be passed as the last argument to the script.
-
#evaluate_script(script, *args) ⇒ Object
Evaluate the given JavaScript and return the result.
-
#execute_script(script, *args)
Execute the given script, not returning a result.
-
#go_back
Move back a single entry in the browser’s history.
-
#go_forward
Move forward a single entry in the browser’s history.
- #html ⇒ String (also: #body, #source)
- #inspect
-
#open_new_window(kind = :tab) ⇒ Capybara::Window
Open a new window.
-
#quit
Disconnect from the current driver.
-
#raise_server_error!
Raise errors encountered in the server.
-
#refresh
Refresh the page.
-
#reset!
(also: #cleanup!, #reset_session!)
Reset the session (i.e. remove cookies and navigate to blank page).
-
#reset_session!
Alias for #reset!.
-
#response_headers ⇒ Hash<String, String>
Returns a hash of response headers.
-
#save_and_open_page(path = nil)
Save a snapshot of the page and open it in a browser for inspection.
-
#save_and_open_screenshot(path = nil, **options)
Save a screenshot of the page and open it for inspection.
-
#save_page(path = nil) ⇒ String
Save a snapshot of the page.
-
#save_screenshot(path = nil, **options) ⇒ String
Save a screenshot of page.
- #send_keys
- #server_url
-
#source
Alias for #html.
-
#status_code ⇒ Integer
Returns the current HTTP status code as an integer.
-
#switch_to_frame(element)
Switch to the given frame.
-
#switch_to_window(&block) ⇒ Capybara::Window
Switch to the given window.
-
#using_wait_time(seconds, &block)
Yield a block using a specific maximum wait time.
-
#visit(visit_uri)
Navigate to the given URL.
-
#window_opened_by(**options, &block) ⇒ Capybara::Window
Get the window that has been opened by the passed block.
-
#windows ⇒ Array<Capybara::Window>
Get all opened windows.
-
#within(*find_args)
(also: #within_element)
Executes the given block within the context of a node.
-
#within_element(*args, **kw_args)
Alias for #within.
-
#within_fieldset(locator, &block)
Execute the given block within the a specific fieldset given the id or legend of that fieldset.
-
#within_frame(element)
Execute the given block within the given iframe using given frame, frame name/id or index.
-
#within_table(locator, &block)
Execute the given block within the a specific table given the id or caption of that table.
-
#within_window(window) { do_something }) ⇒ Object
This method does the following:
- #_find_frame(*args, **kw_args) private
- #_switch_to_window(window = nil, **options, &window_locator) private
- #_switch_to_window_by_locator private
- #accept_modal(type, text_or_options, options, &blk) private
- #adjust_server_port(uri) private
- #default_fn(extension) private
- #dismiss_modal(type, text_or_options, options, &blk) private
- #driver_args(args) private
- #element_script_result(arg) private
- #modal_options(text = nil, **options) private
- #open_file(path) private
- #prepare_path(path, extension) private
- #scopes private
- #synchronize_windows(options, &block) private
Minitest::Expectations
- Included
SessionMatchers
- Included
#assert_current_path | Asserts that the page has the given path. |
#assert_no_current_path | Asserts that the page doesn’t have the given path. |
#has_current_path? | Checks if the page has the given path. |
#has_no_current_path? | Checks if the page doesn’t have the given path. |
#_verify_current_path, #make_predicate |
Constructor Details
.new(mode, app = nil) ⇒ Session
# File 'lib/capybara/session.rb', line 79
def initialize(mode, app = nil) if app && !app.respond_to?(:call) raise TypeError, 'The second parameter to Session::new should be a rack app if passed.' end @@instance_created = true # rubocop:disable Style/ClassVars @mode = mode @app = app if block_given? raise 'A configuration block is only accepted when Capybara.threadsafe == true' unless Capybara.threadsafe yield config end @server = if config.run_server && @app && driver.needs_server? = { port: config.server_port, host: config.server_host, reportable_errors: config.server_errors } [:extra_middleware] = [Capybara::Server::AnimationDisabler] if config.disable_animation Capybara::Server.new(@app, ** ).boot end @touched = false end
Class Attribute Details
.instance_created? ⇒ Boolean
(readonly)
[ GitHub ]
# File 'lib/capybara/session.rb', line 825
def self.instance_created? @@instance_created end
Instance Attribute Details
#app (readonly)
[ GitHub ]#mode (readonly)
[ GitHub ]#server (readonly)
[ GitHub ]#synchronized (rw)
[ GitHub ]# File 'lib/capybara/session.rb', line 77
attr_accessor :synchronized
Instance Method Details
#_find_frame(*args, **kw_args) (private)
[ GitHub ]# File 'lib/capybara/session.rb', line 902
def _find_frame(*args, **kw_args) case args[0] when Capybara::Node::Element args[0] when String, nil find(:frame, *args, **kw_args) when Symbol find(*args, **kw_args) when Integer idx = args[0] all(:frame, minimum: idx + 1)[idx] else raise TypeError end end
#_switch_to_window(window = nil, **options, &window_locator) (private)
# File 'lib/capybara/session.rb', line 918
def _switch_to_window(window = nil, **, &window_locator) raise Capybara::ScopeError, 'Window cannot be switched inside a `within_frame` block' if scopes.include?(:frame) raise Capybara::ScopeError, 'Window cannot be switched inside a `within` block' unless scopes.last.nil? if window driver.switch_to_window(window.handle) window else synchronize_windows( ) do original_window_handle = driver.current_window_handle begin _switch_to_window_by_locator(&window_locator) rescue StandardError driver.switch_to_window(original_window_handle) raise end end end end
#_switch_to_window_by_locator (private)
# File 'lib/capybara/session.rb', line 938
def _switch_to_window_by_locator driver.window_handles.each do |handle| driver.switch_to_window handle return Window.new(self, handle) if yield end raise Capybara::WindowError, 'Could not find a window matching block/lambda' end
#accept_alert(text, **options) { ... } ⇒ String
#accept_alert(**options) { ... } ⇒ String
String
#accept_alert(**options) { ... } ⇒ String
Execute the block, accepting a alert.
Expects a block whose actions will trigger the display modal to appear.
# File 'lib/capybara/session.rb', line 659
def accept_alert(text = nil, **, &blk) accept_modal(:alert, text, , &blk) end
#accept_confirm(text, **options) { ... } ⇒ String
#accept_confirm(**options) { ... } ⇒ String
String
#accept_confirm(**options) { ... } ⇒ String
Execute the block, accepting a confirm.
Expects a block whose actions will trigger the display modal to appear.
# File 'lib/capybara/session.rb', line 669
def accept_confirm(text = nil, **, &blk) accept_modal(:confirm, text, , &blk) end
#accept_modal(type, text_or_options, options, &blk) (private)
[ GitHub ]# File 'lib/capybara/session.rb', line 849
def accept_modal(type, , , &blk) driver.accept_modal(type, ** (, ** ), &blk) end
#accept_prompt(text, **options) { ... } ⇒ String
#accept_prompt(**options) { ... } ⇒ String
String
#accept_prompt(**options) { ... } ⇒ String
Execute the block, accepting a prompt, optionally responding to the prompt.
Expects a block whose actions will trigger the display modal to appear.
# File 'lib/capybara/session.rb', line 690
def accept_prompt(text = nil, **, &blk) accept_modal(:prompt, text, , &blk) end
#active_element
Returns the element with focus.
Not supported by Rack Test
# File 'lib/capybara/session.rb', line 323
def active_element Capybara::Queries::ActiveElementQuery.new.resolve_for(self)[0].tap(&:allow_reload!) end
#adjust_server_port(uri) (private)
[ GitHub ]# File 'lib/capybara/session.rb', line 898
def adjust_server_port(uri) uri.port ||= @server.port if @server && config.always_include_port end
#body
Alias for #html.
# File 'lib/capybara/session.rb', line 200
alias_method :body, :html
#cleanup!
Alias for #reset!.
# File 'lib/capybara/session.rb', line 140
alias_method :cleanup!, :reset!
#config
[ GitHub ]# File 'lib/capybara/session.rb', line 829
def config @config ||= if Capybara.threadsafe Capybara. .dup else Capybara::ReadOnlySessionConfig.new(Capybara. ) end end
#configure {|config| ... }
Accepts a block to set the configuration options if threadsafe is true
. Note that some options only have an effect if set at initialization time, so look at the configuration block that can be passed to the initializer too.
# File 'lib/capybara/session.rb', line 819
def configure raise 'Session configuration is only supported when Capybara.threadsafe == true' unless Capybara.threadsafe yield config end
#current_host ⇒ String
# File 'lib/capybara/session.rb', line 222
def current_host uri = URI.parse(current_url) "#{uri.scheme}://#{uri.host}" if uri.host end
#current_path ⇒ String
# File 'lib/capybara/session.rb', line 207
def current_path # Addressable parsing is more lenient than URI uri = ::Addressable::URI.parse(current_url) # Addressable doesn't support opaque URIs - we want nil here return nil if uri&.scheme == 'about' path = uri&.path path unless path&.empty? end
#current_scope
[ GitHub ]
#current_url ⇒ String
# File 'lib/capybara/session.rb', line 231
def current_url driver.current_url end
#current_window ⇒ Capybara::Window
#default_fn(extension) (private)
[ GitHub ]# File 'lib/capybara/session.rb', line 876
def default_fn(extension) = Time.new.strftime('%Y%m%d%H%M%S') "capybara-#{}#{rand(10**10)}.#{extension}" end
#dismiss_confirm(text, **options) { ... } ⇒ String
#dismiss_confirm(**options) { ... } ⇒ String
String
#dismiss_confirm(**options) { ... } ⇒ String
Execute the block, dismissing a confirm.
Expects a block whose actions will trigger the display modal to appear.
# File 'lib/capybara/session.rb', line 679
def dismiss_confirm(text = nil, **, &blk) dismiss_modal(:confirm, text, , &blk) end
#dismiss_modal(type, text_or_options, options, &blk) (private)
[ GitHub ]# File 'lib/capybara/session.rb', line 853
def dismiss_modal(type, , , &blk) driver.dismiss_modal(type, ** (, ** ), &blk) end
#dismiss_prompt(text, **options) { ... } ⇒ String
#dismiss_prompt(**options) { ... } ⇒ String
String
#dismiss_prompt(**options) { ... } ⇒ String
Execute the block, dismissing a prompt.
Expects a block whose actions will trigger the display modal to appear.
# File 'lib/capybara/session.rb', line 700
def dismiss_prompt(text = nil, **, &blk) dismiss_modal(:prompt, text, , &blk) end
#document
[ GitHub ]#driver
[ GitHub ]# File 'lib/capybara/session.rb', line 100
def driver @driver ||= begin unless Capybara.drivers[mode] other_drivers = Capybara.drivers.names.map(&:inspect) raise Capybara::DriverNotFoundError, "no driver called #{mode.inspect} was found, available drivers: #{other_drivers.join(', ')}" end driver = Capybara.drivers[mode].call(app) driver.session = self if driver.respond_to?(:session=) driver end end
#driver_args(args) (private)
[ GitHub ]#element_script_result(arg) (private)
[ GitHub ]# File 'lib/capybara/session.rb', line 885
def element_script_result(arg) case arg when Array arg.map { || element_script_result( ) } when Hash arg.transform_values! { |value| element_script_result(value) } when Capybara::Driver::Node Capybara::Node::Element.new(self, arg, nil, nil) else arg end end
#evaluate_async_script(script, *args) ⇒ Object
Evaluate the given JavaScript and obtain the result from a callback function which will be passed as the last argument to the script.
# File 'lib/capybara/session.rb', line 633
def evaluate_async_script(script, *args) @touched = true result = driver.evaluate_async_script(script, *driver_args(args)) element_script_result(result) end
#evaluate_script(script, *args) ⇒ 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.
# File 'lib/capybara/session.rb', line 619
def evaluate_script(script, *args) @touched = true result = driver.evaluate_script(script.strip, *driver_args(args)) element_script_result(result) end
#execute_script(script, *args)
Execute the given script, not returning a result. This is useful for scripts that return complex objects, such as jQuery statements. #execute_script
should be used over #evaluate_script whenever possible.
# File 'lib/capybara/session.rb', line 604
def execute_script(script, *args) @touched = true driver.execute_script(script, *driver_args(args)) end
#go_back
Move back a single entry in the browser’s history.
# File 'lib/capybara/session.rb', line 297
def go_back driver.go_back end
#go_forward
Move forward a single entry in the browser’s history.
# File 'lib/capybara/session.rb', line 305
def go_forward driver.go_forward end
#html ⇒ String
Also known as: #body, #source
# File 'lib/capybara/session.rb', line 197
def html driver.html || '' end
#inspect
[ GitHub ]# File 'lib/capybara/session.rb', line 787
def inspect %(#<Capybara::Session>) end
#modal_options(text = nil, **options) (private)
[ GitHub ]# File 'lib/capybara/session.rb', line 857
def (text = nil, ** ) [:text] ||= text unless text.nil? [:wait] ||= config.default_max_wait_time end
#open_file(path) (private)
[ GitHub ]# File 'lib/capybara/session.rb', line 863
def open_file(path) require 'launchy' Launchy.open(path) rescue LoadError warn "File saved to #{path}.\nPlease install the launchy gem to open the file automatically." end
#open_new_window(kind = :tab) ⇒ Capybara::Window
Open a new window. The current window doesn’t change as the result of this call. It should be switched to explicitly.
# File 'lib/capybara/session.rb', line 484
def open_new_window(kind = :tab) window_opened_by do if driver.method(:open_new_window).arity.zero? driver.open_new_window else driver.open_new_window(kind) end end end
#prepare_path(path, extension) (private)
[ GitHub ]# File 'lib/capybara/session.rb', line 870
def prepare_path(path, extension) File. (path || default_fn(extension), config.save_path).tap do |p_path| FileUtils.mkdir_p(File.dirname(p_path)) end end
#quit
Disconnect from the current driver. A new driver will be instantiated on the next interaction.
# File 'lib/capybara/session.rb', line 147
def quit @driver.quit if @driver.respond_to? :quit @document = @driver = nil @touched = false @server&.reset_error! end
#raise_server_error!
Raise errors encountered in the server.
# File 'lib/capybara/session.rb', line 158
def raise_server_error! return unless @server&.error # Force an explanation for the error being raised as the exception cause begin if config.raise_server_errors raise CapybaraError, 'Your application server raised an error - It has been raised in your test code because Capybara.raise_server_errors == true' end rescue CapybaraError => capy_error # rubocop:disable Naming/RescuedExceptionsVariableName raise @server.error, cause: capy_error ensure @server.reset_error! end end
#refresh
Refresh the page.
# File 'lib/capybara/session.rb', line 288
def refresh raise_server_error! driver.refresh end
#reset! Also known as: #cleanup!, #reset_session!
Reset the session (i.e. remove cookies and navigate to blank page).
This method does not:
-
accept modal dialogs if they are present (Selenium driver now does, others may not)
-
clear browser cache/HTML 5 local storage/IndexedDB/Web SQL database/etc.
-
modify state of the driver/underlying browser in any other way
as doing so will result in performance downsides and it’s not needed to do everything from the list above for most apps.
If you want to do anything from the list above on a general basis you can:
-
write RSpec/Cucumber/etc. after hook
-
monkeypatch this method
-
use Ruby’s
prepend
method
# File 'lib/capybara/session.rb', line 130
def reset! if @touched driver.reset! @touched = false switch_to_frame(:top) rescue nil # rubocop:disable Style/RescueModifier @scopes = [nil] end @server&.wait_for_pending_requests raise_server_error! end
#reset_session!
Alias for #reset!.
# File 'lib/capybara/session.rb', line 141
alias_method :reset_session!, :reset!
#response_headers ⇒ Hash
<String
, String
>
Returns a hash of response headers. Not supported by all drivers (e.g. Selenium
).
# File 'lib/capybara/session.rb', line 179
def response_headers driver.response_headers end
#save_and_open_page(path = nil)
#save_and_open_screenshot(path = nil, **options)
# File 'lib/capybara/session.rb', line 762
def save_and_open_screenshot(path = nil, ** ) save_screenshot(path, ** ).tap { |s_path| open_file(s_path) } end
#save_page(path = nil) ⇒ String
Save a snapshot of the page. If asset_host is set it will inject base
tag pointing to asset_host.
If invoked without arguments it will save file to save_path and file will be given randomly generated filename. If invoked with a relative path the path will be relative to save_path.
# File 'lib/capybara/session.rb', line 716
def save_page(path = nil) prepare_path(path, 'html').tap do |p_path| File.write(p_path, Capybara::Helpers.inject_asset_host(body, host: config.asset_host), mode: 'wb') end end
#save_screenshot(path = nil, **options) ⇒ String
# File 'lib/capybara/session.rb', line 747
def save_screenshot(path = nil, ** ) prepare_path(path, 'png').tap { |p_path| driver.save_screenshot(p_path, ** ) } end
#scopes (private)
[ GitHub ]# File 'lib/capybara/session.rb', line 881
def scopes @scopes ||= [nil] end
#send_keys
[ GitHub ]# File 'lib/capybara/session.rb', line 313
def send_keys(...) driver.send_keys(...) end
#server_url
[ GitHub ]# File 'lib/capybara/session.rb', line 837
def server_url @server&.base_url end
#source
Alias for #html.
# File 'lib/capybara/session.rb', line 201
alias_method :source, :html
#status_code ⇒ Integer
Returns the current HTTP status code as an integer. Not supported by all drivers (e.g. Selenium
).
# File 'lib/capybara/session.rb', line 189
def status_code driver.status_code end
#switch_to_frame(element)
#switch_to_frame(location)
Switch to the given frame.
If you use this method you are responsible for making sure you switch back to the parent frame when done in the frame changed to. #within_frame is preferred over this method and should be used when possible. May not be supported by all drivers.
# File 'lib/capybara/session.rb', line 408
def switch_to_frame(frame) case frame when Capybara::Node::Element driver.switch_to_frame(frame) scopes.push(:frame) when :parent if scopes.last != :frame raise Capybara::ScopeError, "`switch_to_frame(:parent)` cannot be called from inside a descendant frame's " \ '`within` block.' end scopes.pop driver.switch_to_frame(:parent) when :top idx = scopes.index(:frame) top_level_scopes = [:frame, nil] if idx if scopes.slice(idx..).any? { |scope| !top_level_scopes.include?(scope) } raise Capybara::ScopeError, "`switch_to_frame(:top)` cannot be called from inside a descendant frame's " \ '`within` block.' end scopes.slice!(idx..) driver.switch_to_frame(:top) end else raise ArgumentError, 'You must provide a frame element, :parent, or :top when calling switch_to_frame' end end
#switch_to_window(&block) ⇒ Capybara::Window
#switch_to_window(window) ⇒ Capybara::Window
Switch to the given window.
# File 'lib/capybara/session.rb', line 512
def switch_to_window(window = nil, **, &window_locator) raise ArgumentError, '`switch_to_window` can take either a block or a window, not both' if window && window_locator raise ArgumentError, '`switch_to_window`: either window or block should be provided' if !window && !window_locator unless scopes.last.nil? raise Capybara::ScopeError, '`switch_to_window` is not supposed to be invoked from ' \ '`within` or `within_frame` blocks.' end _switch_to_window(window, **, &window_locator) end
#synchronize_windows(options, &block) (private)
[ GitHub ]# File 'lib/capybara/session.rb', line 946
def synchronize_windows(, &block) wait_time = Capybara::Queries::BaseQuery.wait(, config.default_max_wait_time) document.synchronize(wait_time, errors: [Capybara::WindowError], &block) end
#using_wait_time(seconds, &block)
Yield a block using a specific maximum wait time.
# File 'lib/capybara/session.rb', line 800
def using_wait_time(seconds, &block) if Capybara.threadsafe begin previous_wait_time = config.default_max_wait_time config.default_max_wait_time = seconds yield ensure config.default_max_wait_time = previous_wait_time end else Capybara.using_wait_time(seconds, &block) end end
#visit(visit_uri)
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 the selenium driver giving an absolute URL will navigate to that page. This allows testing applications running on remote servers. For these drivers, setting app_host will make the remote server the default. For example:
Capybara.app_host = 'http://google.com'
session.visit('/') # visits the google homepage
If always_include_port is set to true
and this session is running against a rack application, then the port that the rack application is running on will automatically be inserted into the URL. Supposing the app is running on port 4567
, doing something like:
visit("http://google.com/test")
Will actually navigate to http://google.com:4567/test
.
# File 'lib/capybara/session.rb', line 261
def visit(visit_uri) raise_server_error! @touched = true visit_uri = ::Addressable::URI.parse(visit_uri.to_s) base_uri = ::Addressable::URI.parse(config.app_host || server_url) if base_uri && [nil, 'http', 'https'].include?(visit_uri.scheme) if visit_uri.relative? visit_uri_parts = visit_uri.to_hash.compact # Useful to people deploying to a subdirectory # and/or single page apps where only the url fragment changes visit_uri_parts[:path] = base_uri.path + visit_uri.path visit_uri = base_uri.merge(visit_uri_parts) end adjust_server_port(visit_uri) end driver.visit(visit_uri.to_s) end
#window_opened_by(**options, &block) ⇒ Capybara::Window
Get the window that has been opened by the passed block. It will wait for it to be opened (in the same way as other ::Capybara
methods wait). It’s better to use this method than windows.last
as order of windows isn’t defined in some drivers.
# File 'lib/capybara/session.rb', line 581
def window_opened_by(** ) old_handles = driver.window_handles yield synchronize_windows( ) do opened_handles = (driver.window_handles - old_handles) if opened_handles.size != 1 raise Capybara::WindowError, 'block passed to #window_opened_by ' \ "opened #{opened_handles.size} windows instead of 1" end Window.new(self, opened_handles.first) end end
#windows ⇒ Array
<Capybara::Window>
Get all opened windows. The order of windows in returned array is not defined. The driver may sort windows by their creation time but it’s not required.
#within(*find_args)
#within(a_node)
Also known as: #within_element
Executes the given block within the context of a node. #within
takes the same options as #find, as well as a block. For the duration of the block, any command to ::Capybara
will be handled as though it were scoped to the given element.
within(:xpath, './/div[@id="delivery-address"]') do
fill_in('Street', with: '12 Main Street')
end
Just as with #find
, if multiple elements match the selector given to #within
, an error will be raised, and just as with #find
, this behaviour can be controlled through the :match
and :exact
options.
It is possible to omit the first parameter, in that case, the selector is assumed to be of the type set in default_selector.
within('div#delivery-address') do
fill_in('Street', with: '12 Main Street')
end
Note that a lot of uses of #within
can be replaced more succinctly with chaining:
find('div#delivery-address').fill_in('Street', with: '12 Main Street')
#within_element(*args, **kw_args)
Alias for #within.
# File 'lib/capybara/session.rb', line 371
alias_method :within_element, :within
#within_fieldset(locator, &block)
Execute the given block within the a specific fieldset given the id or legend of that fieldset.
# File 'lib/capybara/session.rb', line 379
def within_fieldset(locator, &block) within(:fieldset, locator, &block) end
#within_frame(element)
#within_frame([kind = :frame], locator, **options)
#within_frame(index)
Execute the given block within the given iframe using given frame, frame name/id or index. May not be supported by all drivers.
# File 'lib/capybara/session.rb', line 448
def within_frame(*args, **kw_args) switch_to_frame(_find_frame(*args, **kw_args)) begin yield if block_given? ensure switch_to_frame(:parent) end end
#within_table(locator, &block)
Execute the given block within the a specific table given the id or caption of that table.
# File 'lib/capybara/session.rb', line 389
def within_table(locator, &block) within(:table, locator, &block) end
#within_window(window) { do_something }) ⇒ Object
#within_window(proc_or_lambda) { do_something }) ⇒ Object
Object
#within_window(proc_or_lambda) { do_something }) ⇒ Object
This method does the following:
-
Switches to the given window (it can be located by window instance/lambda/string).
-
Executes the given block (within window located at previous step).
-
Switches back (this step will be invoked even if an exception occurs at the second step).
# File 'lib/capybara/session.rb', line 545
def within_window(window_or_proc) original = current_window scopes << nil begin case window_or_proc when Capybara::Window _switch_to_window(window_or_proc) unless original == window_or_proc when Proc _switch_to_window { window_or_proc.call } else raise ArgumentError, '`#within_window` requires a `Capybara::Window` instance or a lambda' end begin yield if block_given? ensure _switch_to_window(original) unless original == window_or_proc end ensure scopes.pop end end