2010-01-18 14:33:22 -05:00
|
|
|
shared_examples_for "find_by_id" do
|
|
|
|
describe '#find_by_id' do
|
|
|
|
before do
|
|
|
|
@session.visit('/with_html')
|
|
|
|
end
|
2009-12-29 22:05:38 -05:00
|
|
|
|
2010-01-18 14:33:22 -05:00
|
|
|
it "should find any element by id" do
|
|
|
|
@session.find_by_id('red').tag_name.should == 'a'
|
|
|
|
@session.find_by_id('hidden_via_ancestor').tag_name.should == 'div'
|
|
|
|
end
|
2009-12-29 22:05:38 -05:00
|
|
|
|
2010-07-19 14:18:16 -04:00
|
|
|
it "should raise error if no element with id is found" do
|
|
|
|
running do
|
|
|
|
@session.find_by_id('nothing_with_this_id')
|
|
|
|
end.should raise_error(Capybara::ElementNotFound)
|
2009-12-29 22:05:38 -05:00
|
|
|
end
|
|
|
|
end
|
2010-01-18 14:33:22 -05:00
|
|
|
end
|