mirror of
https://github.com/teamcapybara/capybara.git
synced 2022-11-09 12:08:07 -05:00
cf1aa4d073
This way, implementations of other drivers can use the specs to verify that they are working correctly.
104 lines
3.7 KiB
Ruby
104 lines
3.7 KiB
Ruby
shared_examples_for "fill_in" do
|
|
describe "#fill_in" do
|
|
before do
|
|
@session.visit('/form')
|
|
end
|
|
|
|
it "should fill in a text field by id" do
|
|
@session.fill_in('form_first_name', :with => 'Harry')
|
|
@session.click_button('awesome')
|
|
extract_results(@session)['first_name'].should == 'Harry'
|
|
end
|
|
|
|
it "should fill in a text field by name" do
|
|
@session.fill_in('form[last_name]', :with => 'Green')
|
|
@session.click_button('awesome')
|
|
extract_results(@session)['last_name'].should == 'Green'
|
|
end
|
|
|
|
it "should fill in a text field by label without for" do
|
|
@session.fill_in('Street', :with => 'Avenue Q')
|
|
@session.click_button('awesome')
|
|
extract_results(@session)['street'].should == 'Avenue Q'
|
|
end
|
|
|
|
it "should favour exact label matches over partial matches" do
|
|
@session.fill_in('Name', :with => 'Harry Jones')
|
|
@session.click_button('awesome')
|
|
extract_results(@session)['name'].should == 'Harry Jones'
|
|
end
|
|
|
|
it "should fill in a textarea by id" do
|
|
@session.fill_in('form_description', :with => 'Texty text')
|
|
@session.click_button('awesome')
|
|
extract_results(@session)['description'].should == 'Texty text'
|
|
end
|
|
|
|
it "should fill in a textarea by label" do
|
|
@session.fill_in('Description', :with => 'Texty text')
|
|
@session.click_button('awesome')
|
|
extract_results(@session)['description'].should == 'Texty text'
|
|
end
|
|
|
|
it "should fill in a textarea by name" do
|
|
@session.fill_in('form[description]', :with => 'Texty text')
|
|
@session.click_button('awesome')
|
|
extract_results(@session)['description'].should == 'Texty text'
|
|
end
|
|
|
|
it "should fill in a password field by id" do
|
|
@session.fill_in('form_password', :with => 'supasikrit')
|
|
@session.click_button('awesome')
|
|
extract_results(@session)['password'].should == 'supasikrit'
|
|
end
|
|
|
|
it "should fill in a field with a custom type" do
|
|
pending "selenium doesn't seem to find custom fields" if @session.mode == :selenium
|
|
@session.fill_in('Schmooo', :with => 'Schmooo is the game')
|
|
@session.click_button('awesome')
|
|
extract_results(@session)['schmooo'].should == 'Schmooo is the game'
|
|
end
|
|
|
|
it "should fill in a password field by name" do
|
|
@session.fill_in('form[password]', :with => 'supasikrit')
|
|
@session.click_button('awesome')
|
|
extract_results(@session)['password'].should == 'supasikrit'
|
|
end
|
|
|
|
it "should fill in a password field by label" do
|
|
@session.fill_in('Password', :with => 'supasikrit')
|
|
@session.click_button('awesome')
|
|
extract_results(@session)['password'].should == 'supasikrit'
|
|
end
|
|
|
|
it "should fill in a password field by name" do
|
|
@session.fill_in('form[password]', :with => 'supasikrit')
|
|
@session.click_button('awesome')
|
|
extract_results(@session)['password'].should == 'supasikrit'
|
|
end
|
|
|
|
it "should prefer exact matches over partial matches" do
|
|
@session.fill_in('Name', :with => 'Ford Prefect')
|
|
@session.click_button('awesome')
|
|
extract_results(@session)['name'].should == 'Ford Prefect'
|
|
end
|
|
|
|
context "with ignore_hidden_fields" do
|
|
before { Capybara.ignore_hidden_elements = true }
|
|
after { Capybara.ignore_hidden_elements = false }
|
|
it "should not find a hidden field" do
|
|
running do
|
|
@session.fill_in('Super Secret', :with => '777')
|
|
end.should raise_error(Capybara::ElementNotFound)
|
|
end
|
|
end
|
|
|
|
context "with a locator that doesn't exist" do
|
|
it "should raise an error" do
|
|
running do
|
|
@session.fill_in('does not exist', :with => 'Blah blah')
|
|
end.should raise_error(Capybara::ElementNotFound)
|
|
end
|
|
end
|
|
end
|
|
end
|