Index: tst_settings_information/test.py =================================================================== diff -u -r31eeb7c6928da240d5d4461b03d370629ea2b0eb -r4f415f859aa30564365bda56067b700c213703e6 --- tst_settings_information/test.py (.../test.py) (revision 31eeb7c6928da240d5d4461b03d370629ea2b0eb) +++ tst_settings_information/test.py (.../test.py) (revision 4f415f859aa30564365bda56067b700c213703e6) @@ -133,6 +133,10 @@ test.startSection("Navigating to 'Device Settings' screen") hd_simulator.cmd_send_hd_operation_mode(op_mode=HDOpModes.MODE_STAN.value, sub_mode=HDOpModes.MODE_FAUL.value) utils.waitForGUI(1) + test.compare(str(waitForObjectExists(names.o_manager_Text).text), config.MANAGER_TEXT, "Manager text should be {}".format(config.MANAGER_TEXT)) + mouseClick(waitForObjectExists(names.o_manager_Text)) + test.compare(str(waitForObjectExists(names.o_treatment_management).text), config.TREATMENT_MANAGEMENT_TEXT, "Treatment Management text should be {}".format(config.TREATMENT_MANAGEMENT_TEXT)) + utils.waitForGUI(1) mouseClick(waitForObjectExists(names.o_settings_Text)) device_settings_text = waitForObjectExists(settings_text_obj(config.DEVICE_SETTINGS_TEXT)) test.compare(device_settings_text.text, config.DEVICE_SETTINGS_TEXT, "{} screen is displayed".format(config.DEVICE_SETTINGS_TEXT))