2021-07-07 23:14:13 -07:00

21 lines
554 B
Ruby

module Features
module SessionHelpers
def sign_up_with(email, password, confirmation)
visit new_user_registration_path
fill_in 'Email', with: email
fill_in 'Password', with: password, match: :prefer_exact
fill_in 'Password confirmation', with: confirmation
click_button 'Sign up'
end
def signin(email, password)
visit new_user_session_path
sleep 2
page.save_screenshot
fill_in 'Email', with: email
fill_in 'Password', with: password
click_button 'Log in'
end
end
end