Skip to content

Commit

Permalink
Merge pull request teamcapybara#1317 from stgeneral/update-readme-exa…
Browse files Browse the repository at this point in the history
…mples

Update examples fill_in 'Email' and click_button
  • Loading branch information
twalpole committed Jul 3, 2014
2 parents fcfdb10 + 1b7393c commit 42aaeab
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,10 @@ You can use the Capybara DSL in your steps, like so:
```ruby
When /I sign in/ do
within("#session") do
fill_in 'Login', :with => 'user@example.com'
fill_in 'Email', :with => 'user@example.com'
fill_in 'Password', :with => 'password'
end
click_link 'Sign in'
click_button 'Sign in'
end
```

Expand Down Expand Up @@ -105,10 +105,10 @@ describe "the signin process", :type => :feature do
it "signs me in" do
visit '/sessions/new'
within("#session") do
fill_in 'Login', :with => 'user@example.com'
fill_in 'Email', :with => 'user@example.com'
fill_in 'Password', :with => 'password'
end
click_link 'Sign in'
click_button 'Sign in'
expect(page).to have_content 'Success'
end
end
Expand Down Expand Up @@ -136,10 +136,10 @@ feature "Signing in" do
scenario "Signing in with correct credentials" do
visit '/sessions/new'
within("#session") do
fill_in 'Login', :with => 'user@example.com'
fill_in 'Email', :with => 'user@example.com'
fill_in 'Password', :with => 'caplin'
end
click_link 'Sign in'
click_button 'Sign in'
expect(page).to have_content 'Success'
end

Expand All @@ -148,10 +148,10 @@ feature "Signing in" do
scenario "Signing in as another user" do
visit '/sessions/new'
within("#session") do
fill_in 'Login', :with => other_user.email
fill_in 'Email', :with => other_user.email
fill_in 'Password', :with => other_user.password
end
click_link 'Sign in'
click_button 'Sign in'
expect(page).to have_content 'Invalid email or password'
end
end
Expand Down Expand Up @@ -720,10 +720,10 @@ module MyModule

def login!
within("//form[@id='session']") do
fill_in 'Login', :with => 'user@example.com'
fill_in 'Email', :with => 'user@example.com'
fill_in 'Password', :with => 'password'
end
click_link 'Sign in'
click_button 'Sign in'
end
end
```
Expand Down Expand Up @@ -770,10 +770,10 @@ require 'capybara'

session = Capybara::Session.new(:webkit, my_rack_app)
session.within("//form[@id='session']") do
session.fill_in 'Login', :with => 'user@example.com'
session.fill_in 'Email', :with => 'user@example.com'
session.fill_in 'Password', :with => 'password'
end
session.click_link 'Sign in'
session.click_button 'Sign in'
```

## XPath, CSS and selectors
Expand Down

0 comments on commit 42aaeab

Please sign in to comment.