Created
July 31, 2015 19:26
-
-
Save yakovenkodenis/4ae4a0db2e18e382d2c2 to your computer and use it in GitHub Desktop.
Capybara example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def sign_up(subdomain) | |
visit root_url(subdomain: false) | |
click_link 'Create Account' | |
fill_in 'Name', with: 'Denis' | |
fill_in 'Email', with: '[email protected]' | |
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