Skip to content

Instantly share code, notes, and snippets.

@uday-rayala
Created December 14, 2015 10:14
Show Gist options
  • Save uday-rayala/967d64dd0afba7f587af to your computer and use it in GitHub Desktop.
Save uday-rayala/967d64dd0afba7f587af to your computer and use it in GitHub Desktop.
def login_with(username, password)
click '#login'
expect(page).to have_css('#login-popup')
fill_in 'username', username
fill_in 'password', password
expect(page).to have_no_css('#login-popup')
expect(page).to have_css('header .username', text: username)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment