Index: tst_HomeScreen/test.py =================================================================== diff -u -r393fd43e9a1cbf6b25a0f107928a051a622b2be2 -r2cebcfa1c6995bc48c71bcf7367e2695a8d1cb24 --- tst_HomeScreen/test.py (.../test.py) (revision 393fd43e9a1cbf6b25a0f107928a051a622b2be2) +++ tst_HomeScreen/test.py (.../test.py) (revision 2cebcfa1c6995bc48c71bcf7367e2695a8d1cb24) @@ -23,26 +23,26 @@ utils.waitForGUI(1) test.compare( waitForObjectExists(names.o_treatmentHome).visible, True) - test.compare(str(waitForObjectExists(names.o_treatmentHome_startTreatment ).text.text), "START TREATMENT" , "SRSUI 024") - test.compare(str(waitForObjectExists(names.o_treatmentHome_createTreatment).text.text), "CREATE TREATMENT" , "SRSUI 532") + test.compare(str(waitForObjectExists(names.o_treatmentHome_startTreatment ).text.text), "START TREATMENT" , utils.SRSUI(24)) + test.compare(str(waitForObjectExists(names.o_treatmentHome_createTreatment).text.text), "CREATE TREATMENT" , utils.SRSUI(532)) test.compare( waitForObjectExists(names.o_mainMenu).visible, True) - test.compare(str(waitForObjectExists(names.o_mainMenu_treatment).text.text), "Treatment" , "SRSUI 534") - test.compare(str(waitForObjectExists(names.o_mainMenu_manager ).text.text), "Manager" , "SRSUI 026") - test.compare(str(waitForObjectExists(names.o_mainMenu_settings ).text.text), "Settings" , "SRSUI 028") + test.compare(str(waitForObjectExists(names.o_mainMenu_treatment).text.text), "Treatment" , utils.SRSUI(534)) + test.compare(str(waitForObjectExists(names.o_mainMenu_manager ).text.text), "Manager" , utils.SRSUI(26)) + test.compare(str(waitForObjectExists(names.o_mainMenu_settings ).text.text), "Settings" , utils.SRSUI(28)) utils.waitForGUI() mouseClick (waitForObjectExists(names.o_mainMenu_manager)) utils.waitForGUI() - test.compare(waitForObjectExists(names.o_managerHome ).visible, True , "SRSUI 027") + test.compare(waitForObjectExists(names.o_managerHome ).visible, True , utils.SRSUI(27)) mouseClick (waitForObjectExists(names.o_mainMenu_settings )) utils.waitForGUI() - test.compare(waitForObjectExists(names.o_settingsHome ).visible, True , "SRSUI 029") + test.compare(waitForObjectExists(names.o_settingsHome ).visible, True , utils.SRSUI(29)) mouseClick (waitForObjectExists(names.o_mainMenu_treatment)) utils.waitForGUI() - test.compare(waitForObjectExists(names.o_treatmentHome).visible, True , "SRSUI 535") + test.compare(waitForObjectExists(names.o_treatmentHome).visible, True , utils.SRSUI(535)) utils.tstDone()