internetee-registry/spec/support/features/session_helpers.rb
2016-12-08 17:48:09 +02:00

12 lines
298 B
Ruby

module Features
module SessionHelpers
def sign_in_to_registrar_area(user: FactoryGirl.create(:api_user))
visit registrar_login_path
fill_in 'depp_user_tag', with: user.username
fill_in 'depp_user_password', with: user.password
click_button 'Login'
end
end
end