Skip to content

Instantly share code, notes, and snippets.

@yakovenkodenis
Created July 31, 2015 19:26
Show Gist options
  • Save yakovenkodenis/4ae4a0db2e18e382d2c2 to your computer and use it in GitHub Desktop.
Save yakovenkodenis/4ae4a0db2e18e382d2c2 to your computer and use it in GitHub Desktop.
Capybara example
def sign_up(subdomain)
visit root_url(subdomain: false)
click_link 'Create Account'
fill_in 'Name', with: 'Denis'
fill_in 'Email', with: 'denis@gmail.com'
fill_in 'Password', with: 'pw'
fill_in 'Password confirmation', with: 'pw'
fill_in 'Subdomain', with: subdomain
click_button 'Create Account'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment