Index: tst_post_treatment/test.py =================================================================== diff -u -rde4dd0bb518628a7cdb691f5af71f8d2ffa02d52 -r575215296a0233033f2b9a3f684230e1651078bd --- tst_post_treatment/test.py (.../test.py) (revision de4dd0bb518628a7cdb691f5af71f8d2ffa02d52) +++ tst_post_treatment/test.py (.../test.py) (revision 575215296a0233033f2b9a3f684230e1651078bd) @@ -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()