2012-07-21 16:44:10 -04:00
|
|
|
Capybara::SpecHelper.spec "#all" 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 find all elements using the given locator" do
|
|
|
|
@session.all('//p').should have(3).elements
|
|
|
|
@session.all('//h1').first.text.should == 'This is a test'
|
|
|
|
@session.all("//input[@id='test_field']").first[:value].should == 'monkey'
|
|
|
|
end
|
2009-12-15 14:58:51 -05:00
|
|
|
|
2012-07-21 16:44:10 -04:00
|
|
|
it "should return an empty array when nothing was found" do
|
|
|
|
@session.all('//div[@id="nosuchthing"]').should be_empty
|
|
|
|
end
|
2010-01-30 13:48:25 -05:00
|
|
|
|
2012-07-21 16:44:10 -04:00
|
|
|
it "should accept an XPath instance" do
|
|
|
|
@session.visit('/form')
|
|
|
|
@xpath = XPath::HTML.fillable_field('Name')
|
|
|
|
@result = @session.all(@xpath).map { |r| r.value }
|
|
|
|
@result.should include('Smith', 'John', 'John Smith')
|
|
|
|
end
|
2010-01-30 13:48:25 -05:00
|
|
|
|
2012-07-21 16:44:10 -04:00
|
|
|
it "should raise an error when given invalid options" do
|
|
|
|
expect { @session.all('//p', :schmoo => "foo") }.to raise_error(ArgumentError)
|
|
|
|
end
|
2012-07-13 09:36:43 -04:00
|
|
|
|
2012-07-21 16:44:10 -04:00
|
|
|
context "with css selectors" do
|
|
|
|
it "should find all elements using the given selector" do
|
|
|
|
@session.all(:css, 'h1').first.text.should == 'This is a test'
|
|
|
|
@session.all(:css, "input[id='test_field']").first[:value].should == 'monkey'
|
|
|
|
end
|
2010-07-09 14:19:31 -04:00
|
|
|
|
2012-07-21 16:44:10 -04:00
|
|
|
it "should find all elements when given a list of selectors" do
|
|
|
|
@session.all(:css, 'h1, p').should have(4).elements
|
2010-01-18 14:33:22 -05:00
|
|
|
end
|
2012-07-21 16:44:10 -04:00
|
|
|
end
|
2010-01-17 12:41:38 -05:00
|
|
|
|
2012-07-21 16:44:10 -04:00
|
|
|
context "with xpath selectors" do
|
|
|
|
it "should find the first element using the given locator" do
|
|
|
|
@session.all(:xpath, '//h1').first.text.should == 'This is a test'
|
|
|
|
@session.all(:xpath, "//input[@id='test_field']").first[:value].should == 'monkey'
|
2010-01-18 14:33:22 -05:00
|
|
|
end
|
2012-07-21 16:44:10 -04:00
|
|
|
end
|
2010-01-17 12:41:38 -05:00
|
|
|
|
2012-07-21 16:44:10 -04:00
|
|
|
context "with css as default selector" do
|
|
|
|
before { Capybara.default_selector = :css }
|
|
|
|
it "should find the first element using the given locator" do
|
|
|
|
@session.all('h1').first.text.should == 'This is a test'
|
|
|
|
@session.all("input[id='test_field']").first[:value].should == 'monkey'
|
2010-01-18 14:33:22 -05:00
|
|
|
end
|
2012-07-21 16:44:10 -04:00
|
|
|
after { Capybara.default_selector = :xpath }
|
|
|
|
end
|
2010-01-17 12:41:38 -05:00
|
|
|
|
2012-07-21 16:44:10 -04:00
|
|
|
context "with visible filter" do
|
|
|
|
after { Capybara.ignore_hidden_elements = false }
|
|
|
|
it "should only find visible nodes" do
|
|
|
|
@session.all(:css, "a.simple").should have(2).elements
|
|
|
|
@session.all(:css, "a.simple", :visible => true).should have(1).elements
|
|
|
|
Capybara.ignore_hidden_elements = true
|
|
|
|
@session.all(:css, "a.simple").should have(1).elements
|
|
|
|
end
|
2010-12-22 10:10:42 -05:00
|
|
|
|
2012-07-21 16:44:10 -04:00
|
|
|
it "should only find invisible nodes" do
|
|
|
|
Capybara.ignore_hidden_elements = true
|
|
|
|
@session.all(:css, "a.simple", :visible => false).should have(2).elements
|
2010-01-18 14:33:22 -05:00
|
|
|
end
|
2012-07-21 16:44:10 -04:00
|
|
|
end
|
2009-12-15 14:58:51 -05:00
|
|
|
|
2012-07-21 16:44:10 -04:00
|
|
|
context "within a scope" do
|
|
|
|
before do
|
|
|
|
@session.visit('/with_scope')
|
|
|
|
end
|
2009-12-15 14:58:51 -05:00
|
|
|
|
2012-07-21 16:44:10 -04:00
|
|
|
it "should find any element using the given locator" do
|
|
|
|
@session.within(:xpath, "//div[@id='for_bar']") do
|
|
|
|
@session.all('.//li').should have(2).elements
|
2009-12-15 14:58:51 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2010-01-18 14:33:22 -05:00
|
|
|
end
|