You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
832 B
25 lines
832 B
module Helpers |
|
def fill_in_number_question(case_log_id, question, value, path) |
|
visit("/logs/#{case_log_id}/#{path}") |
|
fill_in("case-log-#{question.to_s.dasherize}-field", with: value) |
|
click_button("Save and continue") |
|
end |
|
|
|
def answer_all_questions_in_income_subsection(case_log) |
|
visit("/logs/#{case_log.id}/net-income") |
|
fill_in("case-log-earnings-field", with: 18_000) |
|
choose("case-log-incfreq-yearly-field") |
|
click_button("Save and continue") |
|
choose("case-log-benefits-all-field") |
|
click_button("Save and continue") |
|
choose("case-log-hb-tenant-prefers-not-to-say-field") |
|
click_button("Save and continue") |
|
end |
|
|
|
def sign_in(user) |
|
visit("/logs") |
|
fill_in("user[email]", with: user.email) |
|
fill_in("user[password]", with: user.password) |
|
click_button("Sign in") |
|
end |
|
end
|
|
|