Index: shared/scripts/names.py =================================================================== diff -u -r27f6c6672f2c8bb22228ec419a987d9e34a748c9 -r3502797080dc2a3621cdfe98986edf228a65d2ec --- shared/scripts/names.py (.../names.py) (revision 27f6c6672f2c8bb22228ec419a987d9e34a748c9) +++ shared/scripts/names.py (.../names.py) (revision 3502797080dc2a3621cdfe98986edf228a65d2ec) @@ -107,4 +107,7 @@ o_PreTreatmentBase_gridStepsRest_Grid_2 = {"container": o_PreTreatmentConnectionStack_PreTreatmentBase_TreatmentFlowBase_2, "id": "_gridStepsRest", "occurrence": 10, "type": "Grid", "unnamed": 1, "visible": True} o_text_object = {"type": "Text", "unnamed": 1, "visible": True} o_bullet_object = {"type": "StepBullet", "unnamed": 1, "visible": True} -o_pretreatment_ultrafilteration_confirm_btn = {"container": o_pretreatmentConnectionStack_PreTreatmentUltrafiltration_PreTreatmentUltrafiltration, "text": "CONFIRM", "type": "Text", "unnamed": 1, "visible": True} \ No newline at end of file +o_pretreatment_ultrafilteration_confirm_btn = {"container": o_pretreatmentConnectionStack_PreTreatmentUltrafiltration_PreTreatmentUltrafiltration, "text": "CONFIRM", "type": "Text", "unnamed": 1, "visible": True} +o_pretreatment_instruction_continue_btn = {"container": o_PreTreatmentConnectionStack_PreTreatmentBase_TreatmentFlowBase_2, "text": "CONTINUE", "type": "Text", "unnamed": 1, "visible": True} + + Index: tst_pre_treatment_patient_connection/test.py =================================================================== diff -u -r27f6c6672f2c8bb22228ec419a987d9e34a748c9 -r3502797080dc2a3621cdfe98986edf228a65d2ec --- tst_pre_treatment_patient_connection/test.py (.../test.py) (revision 27f6c6672f2c8bb22228ec419a987d9e34a748c9) +++ tst_pre_treatment_patient_connection/test.py (.../test.py) (revision 3502797080dc2a3621cdfe98986edf228a65d2ec) @@ -152,7 +152,14 @@ #Reverse navigation of tutorial pages for instruction_screen in range(screen_indicator): mouseClick(waitForObject(names.o_patient_connection_PreTreatmentBase_leftImage_Image)) + + for instruction_screen in range(3): + mouseClick(waitForObject(names.o_patient_connection_PreTreatmentBase_rightImage_Image)) + + mouseClick(waitForObjectExists(names.o_pretreatment_instruction_continue_btn)) + hd_simulator.cmd_send_pre_treatment_patient_connection_confirm_response(accepted=True, reason=0) + test.endSection() @@ -273,7 +280,7 @@ test_rejection_message_patient_connection(accept_status = False) mouseClick(waitForObjectExists(names.o_pretreatment_ultrafilteration_confirm_btn)) hd_simulator.cmd_send_pre_treatment_continue_to_treament_response(accepted=True, reason=0) - hd_simulator.cmd_send_pre_treatment_prime_start_response(accepted=True, reason=0) + hd_simulator.cmd_send_pre_treatment_patient_connection_confirm_response(accepted=True, reason=0) #cmd to navigate to BP/HR section hd_simulator.cmd_send_uf_treatment_response(accepted = True, reason = 0, volume = config.UF_VALID_RANGE) @@ -290,5 +297,6 @@ #verification of tutorial section test_patient_connection_instruction_screen() + utils.tstDone()