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.
19 lines
664 B
19 lines
664 B
3 years ago
|
module Helpers
|
||
|
def fill_in_number_question(case_log_id, question, value, path)
|
||
|
visit("/case_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("/case_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-prefer-not-to-say-field")
|
||
|
click_button("Save and continue")
|
||
|
end
|
||
|
end
|