Index: tst_Treatment_ParametersRange/test.py =================================================================== diff -u -r99810cece725cd3b1070c61756563b90b6d36650 -r3aed17dfb3ac5265e8ba5635c7ec43fa8c3c0d27 --- tst_Treatment_ParametersRange/test.py (.../test.py) (revision 99810cece725cd3b1070c61756563b90b6d36650) +++ tst_Treatment_ParametersRange/test.py (.../test.py) (revision 3aed17dfb3ac5265e8ba5635c7ec43fa8c3c0d27) @@ -13,9 +13,9 @@ # import names -import utils -import denaliMessages +from dialin.squish import utils, denaliMessages + def gotoScreenNtest_Contains_FlowsSection(): mouseClick(waitForObject(names.o_treatmentHome_startTreatment)) test.compare(waitForObjectExists(names.o_treatmentStart_flowsTouchArea_TreatmentFlows).visible, True) @@ -31,9 +31,13 @@ test.compare(str(waitForObjectExists(names.o_dialysateFlowSlider_Slider).maxText.text), "{}mL/min".format(vMax)) def main(): - startApplication("denaliSquish") + utils.tstStart() + startApplication("denaliSquish") + utils.waitForGUI(1) + gotoScreenNtest_Contains_FlowsSection() + utils.waitForGUI(1) gotoScreenNTest_Contains_Ranges() utils.waitForGUI(1) @@ -55,3 +59,4 @@ denaliMessages.send_acknowledge_UI() test_Dialysate_Ranges(minDF, maxDF) + utils.tstDone() \ No newline at end of file