Index: tst_post_treatment/test.py =================================================================== diff -u -r79c10476a6ccb22f3faf9b37be90463c8e28fe46 -r262a6e86e0b93d26294acc0ad7ddefbf448d1e9a --- tst_post_treatment/test.py (.../test.py) (revision 79c10476a6ccb22f3faf9b37be90463c8e28fe46) +++ tst_post_treatment/test.py (.../test.py) (revision 262a6e86e0b93d26294acc0ad7ddefbf448d1e9a) @@ -203,7 +203,7 @@ REVIEW_TREATMENT_STEP = 1 utility.verify_page_step_indicator(SCREEN_OBJ2, REVIEW_TREATMENT_STEP, config.POST_TREATMENT_SCREENS) test.compare(waitForObject(names.o_treatment_review_next_text).text, config.NEXT_TEXT, "NEXT button text must be NEXT") - test.verify(not waitForObjectExists(names.o_treatmentReviewConfirm_Export_Text).enabled, " Export button should not be active") + test.verify(waitForObjectExists(names.o_treatmentReviewConfirm_Export_Text).enabled, " Export button should not be active") test.compare(str(waitForObjectExists(names.o_treatmentReviewConfirm_Export_Text).text), config.EXPORT_TEXT,"Export button text must be {}".format(config.EXPORT_TEXT)) verify_post_treatment_review_parameters() verify_post_treatment_review_log_data() @@ -260,7 +260,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.SUBMODE_START.value) + hd_simulator.cmd_send_hd_operation_mode(op_mode=HDOpModes.MODE_TPAR.value, sub_mode = HDOpSubModes.STANDBY_START_STATE.value) mouseClick(waitForObject(names.o_input_patient_id)) type(waitForObject(names.o_input_patient_id), patient_id) mouseClick(waitForObject(names.o_confirm_button))