2009-12-15 14:58:51 -05:00
|
|
|
require File.expand_path('spec_helper', File.dirname(__FILE__))
|
2009-12-17 12:22:12 -05:00
|
|
|
|
2009-12-15 14:58:51 -05:00
|
|
|
require 'nokogiri'
|
|
|
|
|
|
|
|
shared_examples_for "session with javascript support" do
|
2010-02-25 19:04:00 -05:00
|
|
|
describe 'all JS specs' do
|
|
|
|
before do
|
|
|
|
Capybara.default_wait_time = 1
|
2010-02-15 08:54:11 -05:00
|
|
|
end
|
2010-01-30 14:09:27 -05:00
|
|
|
|
2010-02-25 19:04:00 -05:00
|
|
|
after do
|
|
|
|
Capybara.default_wait_time = 0
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#find' do
|
|
|
|
it "should allow triggering of custom JS events" do
|
|
|
|
pending "cannot figure out how to do this with selenium" if @session.mode == :selenium
|
|
|
|
@session.visit('/with_js')
|
|
|
|
@session.find(:css, '#with_focus_event').trigger(:focus)
|
|
|
|
@session.should have_css('#focus_event_triggered')
|
|
|
|
end
|
2010-01-01 17:58:59 -05:00
|
|
|
end
|
|
|
|
|
2010-02-25 19:04:00 -05:00
|
|
|
describe '#body' do
|
|
|
|
it "should return the current state of the page" do
|
|
|
|
@session.visit('/with_js')
|
|
|
|
@session.body.should include('I changed it')
|
|
|
|
@session.body.should_not include('This is text')
|
|
|
|
end
|
2010-01-01 17:58:59 -05:00
|
|
|
end
|
|
|
|
|
2010-02-25 19:04:00 -05:00
|
|
|
describe '#source' do
|
|
|
|
it "should return the original, unmodified source of the page" do
|
|
|
|
pending "cannot figure out how to do this with selenium" if @session.mode == :selenium
|
|
|
|
@session.visit('/with_js')
|
|
|
|
@session.source.should include('This is text')
|
|
|
|
@session.source.should_not include('I changed it')
|
|
|
|
end
|
2009-12-15 14:58:51 -05:00
|
|
|
end
|
|
|
|
|
2010-02-25 19:04:00 -05:00
|
|
|
describe "#evaluate_script" do
|
|
|
|
it "should return the evaluated script" do
|
|
|
|
@session.visit('/with_js')
|
|
|
|
@session.evaluate_script("1+3").should == 4
|
|
|
|
end
|
2009-12-15 14:58:51 -05:00
|
|
|
end
|
2010-01-01 13:36:45 -05:00
|
|
|
|
2010-02-25 19:04:00 -05:00
|
|
|
describe '#locate' do
|
|
|
|
it "should wait for asynchronous load" do
|
|
|
|
@session.visit('/with_js')
|
|
|
|
@session.click_link('Click me')
|
|
|
|
@session.locate("//a[contains(.,'Has been clicked')]")[:href].should == '#'
|
|
|
|
end
|
2009-12-31 14:04:38 -05:00
|
|
|
end
|
|
|
|
|
2010-02-25 19:04:00 -05:00
|
|
|
describe '#wait_until' do
|
|
|
|
before do
|
|
|
|
@default_timeout = Capybara.default_wait_time
|
|
|
|
end
|
2009-12-22 18:14:04 -05:00
|
|
|
|
2010-02-25 19:04:00 -05:00
|
|
|
after do
|
|
|
|
Capybara.default_wait_time = @default_wait_time
|
2009-12-22 18:14:04 -05:00
|
|
|
end
|
|
|
|
|
2010-02-25 19:04:00 -05:00
|
|
|
it "should wait for block to return true" do
|
|
|
|
@session.visit('/with_js')
|
|
|
|
@session.select('My Waiting Option', :from => 'waiter')
|
|
|
|
@session.evaluate_script('activeRequests == 1').should be_true
|
|
|
|
@session.wait_until do
|
|
|
|
@session.evaluate_script('activeRequests == 0')
|
2009-12-31 14:04:38 -05:00
|
|
|
end
|
2010-02-25 19:04:00 -05:00
|
|
|
@session.evaluate_script('activeRequests == 0').should be_true
|
|
|
|
end
|
2010-01-01 13:36:45 -05:00
|
|
|
|
2010-02-25 19:04:00 -05:00
|
|
|
it "should raise Capybara::TimeoutError if block doesn't return true within timeout" do
|
|
|
|
@session.visit('/with_html')
|
|
|
|
Proc.new do
|
|
|
|
@session.wait_until(0.1) do
|
|
|
|
@session.find('//div[@id="nosuchthing"]')
|
|
|
|
end
|
|
|
|
end.should raise_error(::Capybara::TimeoutError)
|
|
|
|
end
|
2009-12-22 18:14:04 -05:00
|
|
|
|
2010-02-25 19:04:00 -05:00
|
|
|
it "should accept custom timeout in seconds" do
|
|
|
|
start = Time.now
|
|
|
|
Capybara.default_wait_time = 5
|
|
|
|
begin
|
|
|
|
@session.wait_until(0.1) { false }
|
|
|
|
rescue Capybara::TimeoutError; end
|
|
|
|
(Time.now - start).should be_close(0.1, 0.1)
|
|
|
|
end
|
2010-01-01 13:36:45 -05:00
|
|
|
|
2010-02-25 19:04:00 -05:00
|
|
|
it "should default to Capybara.default_wait_time before timeout" do
|
2010-03-01 22:31:19 -05:00
|
|
|
@session.driver # init the driver to exclude init timing from test
|
2010-02-25 19:04:00 -05:00
|
|
|
start = Time.now
|
|
|
|
Capybara.default_wait_time = 0.2
|
|
|
|
begin
|
|
|
|
@session.wait_until { false }
|
|
|
|
rescue Capybara::TimeoutError; end
|
2010-03-01 22:31:19 -05:00
|
|
|
if @session.driver.has_shortcircuit_timeout
|
|
|
|
(Time.now - start).should be_close(0, 0.1)
|
|
|
|
else
|
|
|
|
(Time.now - start).should be_close(0.2, 0.1)
|
|
|
|
end
|
2010-02-25 19:04:00 -05:00
|
|
|
end
|
2009-12-22 18:14:04 -05:00
|
|
|
end
|
|
|
|
|
2010-02-25 19:04:00 -05:00
|
|
|
describe '#click' do
|
|
|
|
it "should wait for asynchronous load" do
|
|
|
|
@session.visit('/with_js')
|
|
|
|
@session.click_link('Click me')
|
|
|
|
@session.click('Has been clicked')
|
2010-02-25 17:51:51 -05:00
|
|
|
end
|
2009-12-20 10:22:47 -05:00
|
|
|
end
|
2009-12-15 14:58:51 -05:00
|
|
|
|
2010-02-25 19:04:00 -05:00
|
|
|
describe '#click_link' do
|
|
|
|
it "should wait for asynchronous load" do
|
|
|
|
@session.visit('/with_js')
|
|
|
|
@session.click_link('Click me')
|
|
|
|
@session.click_link('Has been clicked')
|
|
|
|
end
|
2009-12-15 14:58:51 -05:00
|
|
|
end
|
|
|
|
|
2010-02-25 19:04:00 -05:00
|
|
|
describe '#click_button' do
|
|
|
|
it "should wait for asynchronous load" do
|
|
|
|
@session.visit('/with_js')
|
|
|
|
@session.click_link('Click me')
|
|
|
|
@session.click_button('New Here')
|
|
|
|
end
|
2009-12-15 14:58:51 -05:00
|
|
|
end
|
2010-01-01 13:36:45 -05:00
|
|
|
|
2010-02-25 19:04:00 -05:00
|
|
|
describe '#fill_in' do
|
|
|
|
it "should wait for asynchronous load" do
|
|
|
|
@session.visit('/with_js')
|
|
|
|
@session.click_link('Click me')
|
|
|
|
@session.fill_in('new_field', :with => 'Testing...')
|
|
|
|
end
|
2009-12-15 14:58:51 -05:00
|
|
|
end
|
2010-01-01 13:36:45 -05:00
|
|
|
|
2010-02-27 13:27:06 -05:00
|
|
|
describe '#check' do
|
|
|
|
it "should trigger associated events" do
|
|
|
|
@session.visit('/with_js')
|
|
|
|
@session.check('checkbox_with_event')
|
|
|
|
@session.should have_css('#checkbox_event_triggered');
|
|
|
|
end
|
2009-12-15 14:58:51 -05:00
|
|
|
end
|
2010-01-01 13:36:45 -05:00
|
|
|
|
2010-02-25 19:04:00 -05:00
|
|
|
describe '#has_xpath?' do
|
|
|
|
it "should wait for content to appear" do
|
|
|
|
@session.visit('/with_js')
|
|
|
|
@session.click_link('Click me')
|
|
|
|
@session.should have_xpath("//input[@type='submit' and @value='New Here']")
|
|
|
|
end
|
2010-01-01 13:36:45 -05:00
|
|
|
end
|
|
|
|
|
2010-02-25 19:04:00 -05:00
|
|
|
describe '#has_no_xpath?' do
|
|
|
|
it "should wait for content to disappear" do
|
|
|
|
@session.visit('/with_js')
|
|
|
|
@session.click_link('Click me')
|
|
|
|
@session.should have_no_xpath("//p[@id='change']")
|
|
|
|
end
|
2010-01-01 13:36:45 -05:00
|
|
|
end
|
|
|
|
|
2010-02-25 19:04:00 -05:00
|
|
|
describe '#has_css?' do
|
|
|
|
it "should wait for content to appear" do
|
|
|
|
@session.visit('/with_js')
|
|
|
|
@session.click_link('Click me')
|
|
|
|
@session.should have_css("input[type='submit'][value='New Here']")
|
|
|
|
end
|
2010-01-01 13:36:45 -05:00
|
|
|
end
|
|
|
|
|
2010-02-25 19:04:00 -05:00
|
|
|
describe '#has_no_xpath?' do
|
|
|
|
it "should wait for content to disappear" do
|
|
|
|
@session.visit('/with_js')
|
|
|
|
@session.click_link('Click me')
|
|
|
|
@session.should have_no_css("p#change")
|
|
|
|
end
|
2010-01-01 13:36:45 -05:00
|
|
|
end
|
|
|
|
|
2010-02-25 19:04:00 -05:00
|
|
|
describe '#has_content?' do
|
|
|
|
it "should wait for content to appear" do
|
|
|
|
@session.visit('/with_js')
|
|
|
|
@session.click_link('Click me')
|
|
|
|
@session.should have_content("Has been clicked")
|
|
|
|
end
|
2010-01-01 13:36:45 -05:00
|
|
|
end
|
|
|
|
|
2010-02-25 19:04:00 -05:00
|
|
|
describe '#has_no_content?' do
|
|
|
|
it "should wait for content to disappear" do
|
|
|
|
@session.visit('/with_js')
|
|
|
|
@session.click_link('Click me')
|
|
|
|
@session.should have_no_content("I changed it")
|
|
|
|
end
|
2010-01-01 13:36:45 -05:00
|
|
|
end
|
|
|
|
|
2010-02-25 19:04:00 -05:00
|
|
|
end
|
2009-12-15 14:58:51 -05:00
|
|
|
end
|