mirror of
https://github.com/teamcapybara/capybara.git
synced 2022-11-09 12:08:07 -05:00
54 lines
2.1 KiB
Ruby
54 lines
2.1 KiB
Ruby
shared_examples_for "unselect" do
|
|
describe "#unselect" do
|
|
before do
|
|
@session.visit('/form')
|
|
end
|
|
|
|
context "with multiple select" do
|
|
it "should unselect an option from a select box by id" do
|
|
@session.unselect('Commando', :from => 'form_underwear')
|
|
@session.click_button('awesome')
|
|
extract_results(@session)['underwear'].should include('Briefs', 'Boxer Briefs')
|
|
extract_results(@session)['underwear'].should_not include('Commando')
|
|
end
|
|
|
|
it "should unselect an option from a select box by label" do
|
|
@session.unselect('Commando', :from => 'Underwear')
|
|
@session.click_button('awesome')
|
|
extract_results(@session)['underwear'].should include('Briefs', 'Boxer Briefs')
|
|
extract_results(@session)['underwear'].should_not include('Commando')
|
|
end
|
|
|
|
it "should favour exact matches to option labels" do
|
|
@session.unselect("Briefs", :from => 'Underwear')
|
|
@session.click_button('awesome')
|
|
extract_results(@session)['underwear'].should include('Commando', 'Boxer Briefs')
|
|
extract_results(@session)['underwear'].should_not include('Briefs')
|
|
end
|
|
|
|
it "should escape quotes" do
|
|
@session.unselect("Frenchman's Pantalons", :from => 'Underwear')
|
|
@session.click_button('awesome')
|
|
extract_results(@session)['underwear'].should_not include("Frenchman's Pantalons")
|
|
end
|
|
end
|
|
|
|
context "with single select" do
|
|
it "should raise an error" do
|
|
running { @session.unselect("English", :from => 'form_locale') }.should raise_error(Capybara::UnselectNotAllowed)
|
|
end
|
|
end
|
|
|
|
context "with a locator that doesn't exist" do
|
|
it "should raise an error" do
|
|
running { @session.unselect('foo', :from => 'does not exist') }.should raise_error(Capybara::ElementNotFound)
|
|
end
|
|
end
|
|
|
|
context "with an option that doesn't exist" do
|
|
it "should raise an error" do
|
|
running { @session.unselect('Does not Exist', :from => 'form_underwear') }.should raise_error(Capybara::OptionNotFound)
|
|
end
|
|
end
|
|
end
|
|
end
|