Index: tst_post_treatment/test.py =================================================================== diff -u -r65cfe31dba0ad2b97090fdacb83181ea235f319f -r699b53e1e0941f2847c68ba4c1a1026f90f7d6fc --- tst_post_treatment/test.py (.../test.py) (revision 65cfe31dba0ad2b97090fdacb83181ea235f319f) +++ tst_post_treatment/test.py (.../test.py) (revision 699b53e1e0941f2847c68ba4c1a1026f90f7d6fc) @@ -19,6 +19,8 @@ import names import csv +import os +from pathlib import Path import test import builtins from dialin.ui import utils @@ -38,7 +40,11 @@ rightarrow_obj_names = [names.o_PostTreatmentStack_patientDisconnectionConfirm_TreatmentFlowBase] leftarrow_obj_names = [names.o_PostTreatmentStack_patientDisconnectionConfirm_TreatmentFlowBase] +pth = Path(os.getcwd()) + + + def get_rightarrow_obj(screen_obj): """ To obtain object for right arrow based on container @@ -463,7 +469,7 @@ def main(): utils.tstStart(__file__) - startApplication(config.AUT_NAME) + startApplication(config.AUT_NAME) hd_simulator.cmd_send_hd_operation_mode(op_mode=HDOpModes.MODE_POST.value, sub_mode=PostTreatmentStates.HD_POST_TREATMENT_PATIENT_DISCONNECTION_STATE.value) verify_patient_disconnection_screens() verify_treatment_review_screen()