2012-07-21 16:44:10 -04:00
|
|
|
Capybara::SpecHelper.spec '#click_link' do
|
|
|
|
before do
|
|
|
|
@session.visit('/with_html')
|
|
|
|
end
|
2009-12-15 14:58:51 -05:00
|
|
|
|
2012-07-21 16:44:10 -04:00
|
|
|
it "should wait for asynchronous load", :requires => [:js] do
|
|
|
|
@session.visit('/with_js')
|
|
|
|
@session.click_link('Click me')
|
|
|
|
@session.click_link('Has been clicked')
|
|
|
|
end
|
2010-10-22 10:45:33 -04:00
|
|
|
|
2012-09-06 03:33:43 -04:00
|
|
|
it "casts to string" do
|
|
|
|
@session.click_link(:'foo')
|
|
|
|
@session.should have_content('Another World')
|
|
|
|
end
|
|
|
|
|
2012-07-21 16:44:10 -04:00
|
|
|
context "with id given" do
|
|
|
|
it "should take user to the linked page" do
|
|
|
|
@session.click_link('foo')
|
2012-08-30 09:58:28 -04:00
|
|
|
@session.should have_content('Another World')
|
2010-01-18 14:33:22 -05:00
|
|
|
end
|
2012-07-21 16:44:10 -04:00
|
|
|
end
|
2010-01-15 10:13:48 -05:00
|
|
|
|
2012-07-21 16:44:10 -04:00
|
|
|
context "with text given" do
|
|
|
|
it "should take user to the linked page" do
|
|
|
|
@session.click_link('labore')
|
2012-08-30 09:58:28 -04:00
|
|
|
@session.should have_content('Bar')
|
2010-01-18 14:33:22 -05:00
|
|
|
end
|
|
|
|
|
2012-07-21 16:44:10 -04:00
|
|
|
it "should accept partial matches" do
|
|
|
|
@session.click_link('abo')
|
2012-08-30 09:58:28 -04:00
|
|
|
@session.should have_content('Bar')
|
2010-01-18 14:33:22 -05:00
|
|
|
end
|
2012-07-21 16:44:10 -04:00
|
|
|
end
|
2010-01-18 14:33:22 -05:00
|
|
|
|
2012-07-21 16:44:10 -04:00
|
|
|
context "with title given" do
|
|
|
|
it "should take user to the linked page" do
|
|
|
|
@session.click_link('awesome title')
|
2012-08-30 09:58:28 -04:00
|
|
|
@session.should have_content('Bar')
|
2009-12-15 14:58:51 -05:00
|
|
|
end
|
2010-01-18 14:33:22 -05:00
|
|
|
|
2012-07-21 16:44:10 -04:00
|
|
|
it "should accept partial matches" do
|
2012-09-09 17:58:09 -04:00
|
|
|
@session.click_link('some titl')
|
2012-08-30 09:58:28 -04:00
|
|
|
@session.should have_content('Bar')
|
2011-08-30 04:54:20 -04:00
|
|
|
end
|
2012-07-21 16:44:10 -04:00
|
|
|
end
|
2011-08-30 04:54:20 -04:00
|
|
|
|
2012-07-21 16:44:10 -04:00
|
|
|
context "with alternative text given to a contained image" do
|
|
|
|
it "should take user to the linked page" do
|
|
|
|
@session.click_link('awesome image')
|
2012-08-30 09:58:28 -04:00
|
|
|
@session.should have_content('Bar')
|
2010-01-18 14:33:22 -05:00
|
|
|
end
|
2010-10-22 10:45:33 -04:00
|
|
|
|
2012-09-09 17:58:09 -04:00
|
|
|
it "should accept partial matches" do
|
2012-07-21 16:44:10 -04:00
|
|
|
@session.click_link('some imag')
|
2012-08-30 09:58:28 -04:00
|
|
|
@session.should have_content('Bar')
|
2010-02-12 08:41:41 -05:00
|
|
|
end
|
2012-07-21 16:44:10 -04:00
|
|
|
end
|
2010-10-22 10:45:33 -04:00
|
|
|
|
2012-07-21 16:44:10 -04:00
|
|
|
context "with a locator that doesn't exist" do
|
|
|
|
it "should raise an error" do
|
|
|
|
msg = "Unable to find link \"does not exist\""
|
|
|
|
running do
|
|
|
|
@session.click_link('does not exist')
|
|
|
|
end.should raise_error(Capybara::ElementNotFound, msg)
|
2010-10-22 10:45:33 -04:00
|
|
|
end
|
2012-07-21 16:44:10 -04:00
|
|
|
end
|
2010-10-22 10:45:33 -04:00
|
|
|
|
2012-07-21 16:44:10 -04:00
|
|
|
it "should follow relative links" do
|
|
|
|
@session.visit('/')
|
|
|
|
@session.click_link('Relative')
|
2012-08-30 09:58:28 -04:00
|
|
|
@session.should have_content('This is a test')
|
2012-07-21 16:44:10 -04:00
|
|
|
end
|
2010-10-22 10:45:33 -04:00
|
|
|
|
2012-09-06 04:46:54 -04:00
|
|
|
it "should follow protocol relative links" do
|
|
|
|
@session.click_link('Protocol')
|
|
|
|
@session.should have_content('Another World')
|
|
|
|
end
|
|
|
|
|
2012-07-21 16:44:10 -04:00
|
|
|
it "should follow redirects" do
|
|
|
|
@session.click_link('Redirect')
|
2012-08-30 09:58:28 -04:00
|
|
|
@session.should have_content('You landed')
|
2012-07-21 16:44:10 -04:00
|
|
|
end
|
2010-10-22 10:45:33 -04:00
|
|
|
|
2012-07-21 16:44:10 -04:00
|
|
|
it "should follow redirects" do
|
|
|
|
@session.click_link('BackToMyself')
|
2012-08-30 09:58:28 -04:00
|
|
|
@session.should have_content('This is a test')
|
2012-07-21 16:44:10 -04:00
|
|
|
end
|
2010-10-22 10:45:33 -04:00
|
|
|
|
2012-07-21 16:44:10 -04:00
|
|
|
it "should add query string to current URL with naked query string" do
|
|
|
|
@session.click_link('Naked Query String')
|
2012-08-30 09:58:28 -04:00
|
|
|
@session.should have_content('Query String sent')
|
2012-07-21 16:44:10 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should do nothing on anchor links" do
|
|
|
|
@session.fill_in("test_field", :with => 'blah')
|
|
|
|
@session.click_link('Normal Anchor')
|
|
|
|
@session.find_field("test_field").value.should == 'blah'
|
|
|
|
@session.click_link('Blank Anchor')
|
|
|
|
@session.find_field("test_field").value.should == 'blah'
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should do nothing on URL+anchor links for the same page" do
|
|
|
|
@session.fill_in("test_field", :with => 'blah')
|
|
|
|
@session.click_link('Anchor on same page')
|
|
|
|
@session.find_field("test_field").value.should == 'blah'
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should follow link on URL+anchor links for a different page" do
|
|
|
|
@session.click_link('Anchor on different page')
|
2012-08-30 09:58:28 -04:00
|
|
|
@session.should have_content('Bar')
|
2012-07-21 16:44:10 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "raise an error with links with no href" do
|
|
|
|
running do
|
|
|
|
@session.click_link('No Href')
|
|
|
|
end.should raise_error(Capybara::ElementNotFound)
|
2009-12-15 14:58:51 -05:00
|
|
|
end
|
2010-01-18 14:33:22 -05:00
|
|
|
end
|