mirror of
https://github.com/teamcapybara/capybara.git
synced 2022-11-09 12:08:07 -05:00
140 lines
4.3 KiB
Ruby
140 lines
4.3 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe Capybara do
|
|
describe '.string' do
|
|
let :string do
|
|
Capybara.string <<-STRING
|
|
<html>
|
|
<head>
|
|
<title>simple_node</title>
|
|
</head>
|
|
<body>
|
|
<div id="page">
|
|
<div id="content">
|
|
<h1 data="fantastic">Totally awesome</h1>
|
|
<p>Yes it is</p>
|
|
</div>
|
|
|
|
<form>
|
|
<input type="text" name="bleh" disabled="disabled"/>
|
|
<input type="text" name="meh"/>
|
|
</form>
|
|
|
|
<div id="footer">
|
|
<p>c2010</p>
|
|
<p>Jonas Nicklas</p>
|
|
<input type="text" name="foo" value="bar"/>
|
|
<select name="animal">
|
|
<option>Monkey</option>
|
|
<option selected="selected">Capybara</option>
|
|
</select>
|
|
</div>
|
|
|
|
<div id="hidden" style="display: none">
|
|
<p id="secret">Secret</p>
|
|
</div>
|
|
|
|
<section>
|
|
<div class="subsection"></div>
|
|
</section>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
STRING
|
|
end
|
|
|
|
it "allows using matchers" do
|
|
string.should have_css('#page')
|
|
string.should_not have_css('#does-not-exist')
|
|
end
|
|
|
|
it "allows using custom matchers" do
|
|
Capybara.add_selector :lifeform do
|
|
xpath { |name| "//option[contains(.,'#{name}')]" }
|
|
end
|
|
string.should have_selector(:id, "page")
|
|
string.should_not have_selector(:id, 'does-not-exist')
|
|
string.should have_selector(:lifeform, "Monkey")
|
|
string.should_not have_selector(:lifeform, "Gorilla")
|
|
end
|
|
|
|
it 'allows custom matcher using css' do
|
|
Capybara.add_selector :section do
|
|
css { |css_class| "section .#{css_class}" }
|
|
end
|
|
string.should have_selector(:section, 'subsection')
|
|
string.should_not have_selector(:section, 'section_8')
|
|
end
|
|
|
|
it "allows using matchers with text option" do
|
|
string.should have_css('h1', :text => 'Totally awesome')
|
|
string.should_not have_css('h1', :text => 'Not so awesome')
|
|
end
|
|
|
|
it "allows finding only visible nodes" do
|
|
string.all(:css, '#secret', :visible => true).should be_empty
|
|
string.all(:css, '#secret', :visible => false).should have(1).element
|
|
end
|
|
|
|
it "allows finding elements and extracting text from them" do
|
|
string.find('//h1').text.should == 'Totally awesome'
|
|
end
|
|
|
|
it "allows finding elements and extracting attributes from them" do
|
|
string.find('//h1')[:data].should == 'fantastic'
|
|
end
|
|
|
|
it "allows finding elements and extracting the tag name from them" do
|
|
string.find('//h1').tag_name.should == 'h1'
|
|
end
|
|
|
|
it "allows finding elements and extracting the path" do
|
|
string.find('//h1').path.should == '/html/body/div/div[1]/h1'
|
|
end
|
|
|
|
it "allows finding elements and extracting the path" do
|
|
string.find('//div/input').value.should == 'bar'
|
|
string.find('//select').value.should == 'Capybara'
|
|
end
|
|
|
|
it "allows finding elements and checking if they are visible" do
|
|
string.find('//h1').should be_visible
|
|
string.find(:css, "#secret", :visible => false).should_not be_visible
|
|
end
|
|
|
|
it "allows finding elements and checking if they are disabled" do
|
|
string.find('//form/input[@name="bleh"]').should be_disabled
|
|
string.find('//form/input[@name="meh"]').should_not be_disabled
|
|
end
|
|
|
|
describe "#title" do
|
|
it "returns the page title" do
|
|
string.title.should == "simple_node"
|
|
end
|
|
end
|
|
|
|
describe "#has_title?" do
|
|
it "returns whether the page has the given title" do
|
|
string.has_title?('simple_node').should be_true
|
|
string.has_title?('monkey').should be_false
|
|
end
|
|
|
|
it "allows regexp matches" do
|
|
string.has_title?(/s[a-z]+_node/).should be_true
|
|
string.has_title?(/monkey/).should be_false
|
|
end
|
|
end
|
|
|
|
describe '#has_no_title?' do
|
|
it "returns whether the page does not have the given title" do
|
|
string.has_no_title?('simple_node').should be_false
|
|
string.has_no_title?('monkey').should be_true
|
|
end
|
|
|
|
it "allows regexp matches" do
|
|
string.has_no_title?(/s[a-z]+_node/).should be_false
|
|
string.has_no_title?(/monkey/).should be_true
|
|
end
|
|
end
|
|
end
|
|
end
|