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/spec/session/node_spec.rb

198 lines
6.2 KiB
Ruby
Raw Normal View History

Capybara::SpecHelper.spec "node" do
before do
@session.visit('/with_html')
end
it "should act like a session object" do
@session.visit('/form')
@form = @session.find(:css, '#get-form')
@form.should have_field('Middle Name')
@form.should have_no_field('Languages')
@form.fill_in('Middle Name', :with => 'Monkey')
@form.click_button('med')
extract_results(@session)['middle_name'].should == 'Monkey'
end
it "should scope CSS selectors" do
@session.find(:css, '#second').should have_no_css('h1')
end
describe "#parent" do
it "should have a reference to its parent if there is one" do
@node = @session.find(:css, '#first')
@node.parent.should == @node.session.document
@node.find(:css, '#foo').parent.should == @node
2012-07-13 06:59:57 -04:00
end
end
2012-07-13 06:59:57 -04:00
describe "#text" do
it "should extract node texts" do
@session.all('//a')[0].text.should == 'labore'
@session.all('//a')[1].text.should == 'ullamco'
2012-07-13 06:59:57 -04:00
end
it "should return document text on /html selector" do
@session.visit('/with_simple_html')
@session.all('/html')[0].text.should == 'Bar'
2012-07-13 06:59:57 -04:00
end
end
2012-07-13 06:59:57 -04:00
describe "#[]" do
it "should extract node attributes" do
@session.all('//a')[0][:class].should == 'simple'
@session.all('//a')[1][:id].should == 'foo'
@session.all('//input')[0][:type].should == 'text'
2012-07-13 06:59:57 -04:00
end
it "should extract boolean node attributes" do
@session.find('//input[@id="checked_field"]')[:checked].should be_true
end
end
2012-07-13 06:59:57 -04:00
describe "#value" do
it "should allow retrieval of the value" do
@session.find('//textarea[@id="normal"]').value.should == 'banana'
2012-07-13 06:59:57 -04:00
end
it "should not swallow extra newlines in textarea" do
@session.find('//textarea[@id="additional_newline"]').value.should == "\nbanana"
end
end
2012-07-13 06:59:57 -04:00
describe "#set" do
it "should allow assignment of field value" do
@session.first('//input').value.should == 'monkey'
@session.first('//input').set('gorilla')
@session.first('//input').value.should == 'gorilla'
2012-07-13 06:59:57 -04:00
end
end
2012-07-13 06:59:57 -04:00
describe "#tag_name" do
it "should extract node tag name" do
@session.all('//a')[0].tag_name.should == 'a'
@session.all('//a')[1].tag_name.should == 'a'
@session.all('//p')[1].tag_name.should == 'p'
end
end
2012-07-13 06:59:57 -04:00
describe "#visible?" do
it "should extract node visibility" do
@session.first('//a').should be_visible
@session.find('//div[@id="hidden"]').should_not be_visible
@session.find('//div[@id="hidden_via_ancestor"]').should_not be_visible
2012-07-13 06:59:57 -04:00
end
end
2012-07-13 06:59:57 -04:00
describe "#checked?" do
it "should extract node checked state" do
@session.visit('/form')
@session.find('//input[@id="gender_female"]').should be_checked
@session.find('//input[@id="gender_male"]').should_not be_checked
@session.first('//h1').should_not be_checked
2012-07-13 06:59:57 -04:00
end
end
2012-07-13 06:59:57 -04:00
describe "#selected?" do
it "should extract node selected state" do
@session.visit('/form')
@session.find('//option[@value="en"]').should be_selected
@session.find('//option[@value="sv"]').should_not be_selected
@session.first('//h1').should_not be_selected
2012-07-13 06:59:57 -04:00
end
end
2012-07-13 06:59:57 -04:00
describe "#==" do
it "preserve object identity" do
(@session.find('//h1') == @session.find('//h1')).should be_true
(@session.find('//h1') === @session.find('//h1')).should be_true
(@session.find('//h1').eql? @session.find('//h1')).should be_false
end
end
2012-07-13 06:59:57 -04:00
describe "#trigger", :requires => [:js, :trigger] do
it "should allow triggering of custom JS events" do
@session.visit('/with_js')
@session.find(:css, '#with_focus_event').trigger(:focus)
@session.should have_css('#focus_event_triggered')
2012-07-13 06:59:57 -04:00
end
end
2012-07-13 06:59:57 -04:00
describe '#drag_to', :requires => [:js, :drag] do
it "should drag and drop an object" do
@session.visit('/with_js')
element = @session.find('//div[@id="drag"]')
target = @session.find('//div[@id="drop"]')
element.drag_to(target)
@session.find('//div[contains(., "Dropped!")]').should_not be_nil
2012-07-13 06:59:57 -04:00
end
end
2012-07-13 06:59:57 -04:00
describe '#reload', :requires => [:js] do
context "without automatic reload" do
before { Capybara.automatic_reload = false }
it "should reload the current context of the node" do
@session.visit('/with_js')
node = @session.find(:css, '#reload-me')
@session.click_link('Reload!')
sleep(0.3)
node.reload.text.should == 'RELOADED'
node.text.should == 'RELOADED'
end
it "should reload a parent node" do
@session.visit('/with_js')
node = @session.find(:css, '#reload-me').find(:css, 'em')
@session.click_link('Reload!')
sleep(0.3)
node.reload.text.should == 'RELOADED'
node.text.should == 'RELOADED'
2012-07-13 06:59:57 -04:00
end
it "should not automatically reload" do
@session.visit('/with_js')
node = @session.find(:css, '#reload-me')
@session.click_link('Reload!')
sleep(0.3)
running { node.text.should == 'RELOADED' }.should raise_error
2012-07-13 06:59:57 -04:00
end
after { Capybara.automatic_reload = true }
2012-07-13 06:59:57 -04:00
end
context "with automatic reload" do
it "should reload the current context of the node automatically" do
@session.visit('/with_js')
node = @session.find(:css, '#reload-me')
@session.click_link('Reload!')
sleep(0.3)
node.text.should == 'RELOADED'
end
it "should reload a parent node automatically" do
@session.visit('/with_js')
node = @session.find(:css, '#reload-me').find(:css, 'em')
@session.click_link('Reload!')
sleep(0.3)
node.text.should == 'RELOADED'
end
it "should reload a node automatically when using find" do
@session.visit('/with_js')
node = @session.find(:css, '#reload-me')
@session.click_link('Reload!')
sleep(0.3)
node.find(:css, 'a').text.should == 'RELOADED'
end
it "should not reload nodes which haven't been found" do
@session.visit('/with_js')
node = @session.all(:css, '#the-list li')[1]
@session.click_link('Fetch new list!')
sleep(0.3)
running { node.text.should == 'Foo' }.should raise_error
running { node.text.should == 'Bar' }.should raise_error
end
end
2012-07-13 06:59:57 -04:00
end
end