Index: shared/scripts/configuration/strings.py =================================================================== diff -u -r219c2c375514eb26ecddaa87c8b3e1add4a2749b -r4f415f859aa30564365bda56067b700c213703e6 --- shared/scripts/configuration/strings.py (.../strings.py) (revision 219c2c375514eb26ecddaa87c8b3e1add4a2749b) +++ shared/scripts/configuration/strings.py (.../strings.py) (revision 4f415f859aa30564365bda56067b700c213703e6) @@ -8,7 +8,9 @@ ACK_REQ_STATUS = 'Ack Req' ACK_BAK_STATUS = 'Ack Bak' - +#Manager +TREATMENT_MANAGEMENT_TEXT = "Treatment Management" +MANAGER_TEXT = "Manager" #Setting DEVICE_SETTINGS_TEXT = "Device Settings" DEVICE_SETTINGS_SCREEN_PARAMETER = ["Information", "Volume And Brightness", "Wi-Fi", "Bluetooth Cuff", "DG Cleaning", "Service", "Export Logs"] @@ -17,7 +19,6 @@ SettingsHome_Settings_Text = "Settings" #Information - INFORMATION_TITLES = ["Information", "Versions"] INFORMATION_PARAMETERS = ["Information", "UI Version", "HD Version", "HD FPGA Version", "HD Serial Number", "DG Version", "DG FPGA Version", "DG Serial Number"] SERVICE_TEXT = "Service" Index: shared/scripts/names.py =================================================================== diff -u -r31eeb7c6928da240d5d4461b03d370629ea2b0eb -r4f415f859aa30564365bda56067b700c213703e6 --- shared/scripts/names.py (.../names.py) (revision 31eeb7c6928da240d5d4461b03d370629ea2b0eb) +++ shared/scripts/names.py (.../names.py) (revision 4f415f859aa30564365bda56067b700c213703e6) @@ -141,3 +141,7 @@ o_SettingsBase_mouseArea_MouseArea = {"container": o_SettingsBase_SettingsWiFi, "id": "_mouseArea", "type": "MouseArea", "unnamed": 1, "visible": True} o_SettingsBase_Scan_Finished_Text = {"container": o_SettingsBase_SettingsWiFi, "text": "Scan Finished", "type": "Text", "unnamed": 1, "visible": True} o_SettingsBase_mouseArea_MouseArea_3 = {"container": o_SettingsBase_SettingsWiFi, "id": "_mouseArea", "occurrence": 2, "type": "MouseArea", "unnamed": 1, "visible": True} + +#Manager +o_manager_Text = {"container": o_Gui_MainView, "text": "Manager", "type": "Text", "unnamed": 1, "visible": True} +o_treatment_management = {"container": o_Gui_MainView, "text": "Treatment Management", "type": "Text", "unnamed": 1, "visible": True} \ No newline at end of file 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))