Index: tst_post_treatment/test.py =================================================================== diff -u -r07ccc340a76fd499a1e6912dbe7124677c88eded -r6bb43117bca2673c5de877f5b70b094da344418a --- tst_post_treatment/test.py (.../test.py) (revision 07ccc340a76fd499a1e6912dbe7124677c88eded) +++ tst_post_treatment/test.py (.../test.py) (revision 6bb43117bca2673c5de877f5b70b094da344418a) @@ -28,7 +28,7 @@ from configuration import config from dialin.ui.hd_simulator import HDSimulator from configuration import utility -from dialin.common.hd_defs import HDOpModes, HDOpSubModes, PostTreatmentStates +from dialin.common.hd_defs import HDOpModes, HDStandbyStates, PostTreatmentStates hd_simulator = HDSimulator() @@ -272,7 +272,7 @@ Method to fetch patient ID from create custom treatment in post treatment review """ test.startSection("Method for navigate to create custom treatment to set all parameters ") - hd_simulator.cmd_send_hd_operation_mode(op_mode=HDOpModes.MODE_TPAR.value, sub_mode = HDOpSubModes.STANDBY_START_STATE.value) + hd_simulator.cmd_send_hd_operation_mode(op_mode=HDOpModes.MODE_TPAR.value, sub_mode = HDStandbyStates.STANDBY_START_STATE.value) mouseClick(waitForObject(names.o_input_patient_id)) type(waitForObject(names.o_input_patient_id), patient_id) mouseClick(waitForObject(names.o_continue_button))