1
0
Fork 0
mirror of https://github.com/teamcapybara/capybara.git synced 2022-11-09 12:08:07 -05:00
teamcapybara--capybara/lib/capybara/session.rb

252 lines
6.6 KiB
Ruby
Raw Normal View History

require 'capybara/wait_until'
2009-11-26 17:47:58 -05:00
module Capybara
class Session
include Searchable
2010-01-01 11:48:39 -05:00
DSL_METHODS = [
:all, :attach_file, :body, :check, :choose, :click, :click_button, :click_link, :current_url, :drag, :evaluate_script,
: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?, :locate, :save_and_open_page, :select, :source, :uncheck,
2010-01-23 06:57:45 -05:00
:visit, :wait_until, :within, :within_fieldset, :within_table, :has_link?, :has_no_link?, :has_button?, :has_no_button?,
:has_field?, :has_no_field?, :has_checked_field?, :has_unchecked_field?
]
attr_reader :mode, :app
2009-11-09 17:51:39 -05:00
2009-11-26 17:47:58 -05:00
def initialize(mode, app)
@mode = mode
2009-11-26 17:47:58 -05:00
@app = app
end
2010-01-01 11:48:39 -05:00
2009-11-26 17:47:58 -05:00
def driver
@driver ||= case mode
when :rack_test
Capybara::Driver::RackTest.new(app)
when :selenium
Capybara::Driver::Selenium.new(app)
when :celerity
Capybara::Driver::Celerity.new(app)
when :culerity
Capybara::Driver::Culerity.new(app)
2009-11-26 17:47:58 -05:00
else
raise Capybara::DriverNotFoundError, "no driver called #{mode} was found"
end
end
2009-11-26 17:47:58 -05:00
def cleanup!
driver.cleanup!
end
def current_url
driver.current_url
end
2010-01-01 11:48:39 -05:00
def response_headers
driver.response_headers
end
2010-01-01 11:48:39 -05:00
2009-11-26 17:47:58 -05:00
def visit(path)
driver.visit(path)
2009-11-24 15:32:25 -05:00
end
2009-11-26 17:47:58 -05:00
def click(locator)
msg = "no link or button '#{locator}' found"
locate(:xpath, XPath.link(locator).button(locator), msg).click
end
2009-11-26 17:47:58 -05:00
def click_link(locator)
msg = "no link with title, id or text '#{locator}' found"
locate(:xpath, XPath.link(locator), msg).click
2009-11-24 15:45:52 -05:00
end
2009-11-07 12:56:04 -05:00
2009-11-26 17:47:58 -05:00
def click_button(locator)
msg = "no button with value or id or text '#{locator}' found"
locate(:xpath, XPath.button(locator), msg).click
2009-11-26 17:47:58 -05:00
end
2009-11-17 18:03:46 -05:00
def drag(source_locator, target_locator)
source = locate(:xpath, source_locator, "drag source '#{source_locator}' not found on page")
target = locate(:xpath, target_locator, "drag target '#{target_locator}' not found on page")
source.drag_to(target)
end
2009-11-26 17:47:58 -05:00
def fill_in(locator, options={})
msg = "cannot fill in, no text field, text area or password field with id, name, or label '#{locator}' found"
locate(:xpath, XPath.fillable_field(locator), msg).set(options[:with])
2009-11-26 17:47:58 -05:00
end
2009-11-17 18:03:46 -05:00
2009-11-26 17:47:58 -05:00
def choose(locator)
msg = "cannot choose field, no radio button with id, name, or label '#{locator}' found"
locate(:xpath, XPath.radio_button(locator), msg).set(true)
2009-11-26 17:47:58 -05:00
end
2009-11-07 12:56:04 -05:00
2009-11-26 17:47:58 -05:00
def check(locator)
msg = "cannot check field, no checkbox with id, name, or label '#{locator}' found"
locate(:xpath, XPath.checkbox(locator), msg).set(true)
2009-11-26 17:47:58 -05:00
end
2009-11-16 15:41:38 -05:00
2009-11-26 17:47:58 -05:00
def uncheck(locator)
msg = "cannot uncheck field, no checkbox with id, name, or label '#{locator}' found"
locate(:xpath, XPath.checkbox(locator), msg).set(false)
2009-11-26 17:47:58 -05:00
end
def select(value, options={})
msg = "cannot select option, no select box with id, name, or label '#{options[:from]}' found"
locate(:xpath, XPath.select(options[:from]), msg).select(value)
2009-11-26 17:47:58 -05:00
end
def attach_file(locator, path)
msg = "cannot attach file, no file field with id, name, or label '#{locator}' found"
locate(:xpath, XPath.file_field(locator), msg).set(path)
2009-11-26 17:47:58 -05:00
end
2009-11-16 15:41:38 -05:00
2009-11-26 17:47:58 -05:00
def body
driver.body
2009-11-26 17:47:58 -05:00
end
def source
driver.source
end
2009-11-26 17:47:58 -05:00
def within(kind, scope=nil)
kind, scope = Capybara.default_selector, kind unless scope
scope = XPath.from_css(scope) if kind == :css
locate(:xpath, scope, "scope '#{scope}' not found on page")
2009-11-26 17:47:58 -05:00
scopes.push(scope)
yield
ensure
2009-11-26 17:47:58 -05:00
scopes.pop
end
2009-11-14 09:11:29 -05:00
2009-11-26 17:47:58 -05:00
def within_fieldset(locator)
within :xpath, XPath.fieldset(locator) do
2009-11-26 17:47:58 -05:00
yield
end
2009-11-10 16:48:31 -05:00
end
2009-11-26 17:47:58 -05:00
def within_table(locator)
within :xpath, XPath.table(locator) do
2009-11-26 17:47:58 -05:00
yield
end
end
def has_xpath?(path, options={})
wait_conditionally_until do
results = all(:xpath, path, options)
if options[:count]
results.size == options[:count]
else
results.size > 0
end
end
rescue Capybara::TimeoutError
return false
end
def has_no_xpath?(path, options={})
wait_conditionally_until do
results = all(:xpath, path, options)
if options[:count]
results.size != options[:count]
else
results.empty?
end
end
rescue Capybara::TimeoutError
return false
end
def has_css?(path, options={})
has_xpath?(XPath.from_css(path), options)
end
def has_no_css?(path, options={})
has_no_xpath?(XPath.from_css(path), options)
end
def has_content?(content)
has_xpath?(XPath.content(content))
end
def has_no_content?(content)
has_no_xpath?(XPath.content(content))
end
2009-11-26 17:47:58 -05:00
2010-01-18 15:28:06 -05:00
def has_link?(locator)
has_xpath?(XPath.link(locator))
end
def has_no_link?(locator)
has_no_xpath?(XPath.link(locator))
end
2010-01-18 15:40:59 -05:00
def has_button?(locator)
has_xpath?(XPath.button(locator))
end
def has_no_button?(locator)
has_no_xpath?(XPath.button(locator))
end
2010-01-18 15:28:06 -05:00
def has_field?(locator, options={})
has_xpath?(XPath.field(locator, options))
end
def has_no_field?(locator, options={})
has_no_xpath?(XPath.field(locator, options))
end
def has_checked_field?(locator)
has_xpath?(XPath.field(locator, :checked => true))
end
def has_unchecked_field?(locator)
has_xpath?(XPath.field(locator, :unchecked => true))
end
2009-11-26 17:47:58 -05:00
def save_and_open_page
require 'capybara/save_and_open_page'
Capybara::SaveAndOpenPage.save_and_open_page(body)
end
#return node identified by locator or raise ElementNotFound(using desc)
def locate(kind_or_locator, locator=nil, fail_msg = nil)
node = wait_conditionally_until { find(kind_or_locator, locator) }
2010-01-01 11:48:03 -05:00
ensure
raise Capybara::ElementNotFound, fail_msg || "Unable to locate '#{kind_or_locator}'" unless node
2010-01-01 11:48:03 -05:00
return node
end
2010-01-01 11:48:39 -05:00
def wait_until(timeout = Capybara.default_wait_time)
WaitUntil.timeout(timeout) { yield }
end
2010-01-01 11:48:39 -05:00
def evaluate_script(script)
2009-12-14 09:30:29 -05:00
driver.evaluate_script(script)
end
2009-11-26 17:47:58 -05:00
private
def wait_conditionally_until
if driver.wait? then wait_until { yield } else yield end
end
def all_unfiltered(locator)
XPath.wrap(locator).scope(current_scope).paths.map do |path|
driver.find(path)
end.flatten
2009-11-26 17:47:58 -05:00
end
2010-01-01 11:48:39 -05:00
2009-11-26 17:47:58 -05:00
def current_scope
scopes.join('')
end
def scopes
@scopes ||= []
end
2009-11-14 09:11:29 -05:00
end
2009-11-07 09:36:58 -05:00
end