Index: shared/scripts/configuration/strings.py =================================================================== diff -u -r79c10476a6ccb22f3faf9b37be90463c8e28fe46 -r262a6e86e0b93d26294acc0ad7ddefbf448d1e9a --- shared/scripts/configuration/strings.py (.../strings.py) (revision 79c10476a6ccb22f3faf9b37be90463c8e28fe46) +++ shared/scripts/configuration/strings.py (.../strings.py) (revision 262a6e86e0b93d26294acc0ad7ddefbf448d1e9a) @@ -39,8 +39,10 @@ POST_TREATMENT_REVIEW_SCREEN_UNITS = { "Patient ID" : "", + "Heparin Bolus Volume": "mL", "Heparin Stop" : "min", - "Device ID" : "", + "Heparin Dispense Rate" : "mL/hr", + "Heparin Bolus Volume" : "mL", "Heparin Delivered Volume": "mL", "Blood Flow Rate" : "mL/min", "Treatment Start DateTime" : "", @@ -62,18 +64,11 @@ "Target UF Rate": "mL/min", "Sodium Concentration" : "mEg/L", "Actual UF Rate": "mL/min", - "Dialysate Temperature" :"°C", + "Dialysate Temperature" :"C", "Saline Bolus Volume" : "mL", "Dialyzer Type" : "", - "Average Blood Flow" : "mL/min", - "Heparin Type" : "IU/mL", - "Average Dialysate Flow" : "mL/min", - "Heparin Concentration" : "IU/mL", - "Average Dialysate Temp" : "°C", - "Heparin Bolus Volume": "mL", - "Average Arterial Pressure" : "mmHg", - "Heparin Dispense Rate" : "mL/hr", - "Average Venous Pressure" : "mmHg", + "Heparin Type" : "", + "Heparin Concentration" : "IU/mL", } 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))