ensl.org/spec/support/features/session_helpers.rb
Ari Timonen 76faa4d18c Fix articles and the tests
Fix user password
Add errors to production only
Improve tests
2020-03-17 21:31:57 +02:00

30 lines
694 B
Ruby
Executable file

module Features
module SessionHelpers
def sign_in_as(user)
visit root_path
fill_in "login_username", with: user.username
fill_in "login_password", with: user.raw_password
click_button I18n.t("helpers.submit.user.login")
expect(page).to have_content(I18n.t('login_successful'))
end
def change_timezone_for(user, timezone)
visit edit_user_path(user.id)
click_link I18n.t("profile.locals")
find("option[value='#{timezone}']").select_option
click_button I18n.t("helpers.submit.user.update")
end
def user_status
find "#authentication"
end
def registration_form
find "#new_user"
end
end
end