Index: suite_leahi/tst_general_aesthetics/test.py =================================================================== diff -u -rb39f0f6648b376d99112dc32a1ecf6bb0d612e4e -r5fba778211ba0dddf8e32cf60789e9afb6b44d62 --- suite_leahi/tst_general_aesthetics/test.py (.../test.py) (revision b39f0f6648b376d99112dc32a1ecf6bb0d612e4e) +++ suite_leahi/tst_general_aesthetics/test.py (.../test.py) (revision 5fba778211ba0dddf8e32cf60789e9afb6b44d62) @@ -6,8 +6,7 @@ # 1 Start Leahi Application # 2 Get Settings Icon Image and Compare it, Log the Header Settings Pop up displayed # Get Settings Brightness and Volume Icon Images and Compare -# 4 Verify Information Pop-up SD Card Section -# 5 Log the Header Diagnostics Pop up displayed and Compare TD Op modes and Sub modes +# 3 Log the Header Diagnostics Pop up displayed and Compare TD Op modes and Sub modes import names @@ -71,26 +70,6 @@ test.endSection() -def headerbar_information_popup_sd_card_section(): - """ - Method to verify Information Pop-up SD Card - """ - test.startSection("Verifying Information Pop-up SD Card Section") - mouseClick(waitForObjectExists(names.o_InformationIconButton, 3000)) - # Compare SD Card Section Contents - for content in config.SD_CARD_SECTION_CONTENTS: - obj = waitForObjectExists( - utility.setObjectText(names.o_InformationParameters, content) - ) - test.compare( - obj.text, - content, - f"Comparison of Information Pop-up SD Card Section Contents: {content}", - ) - - test.endSection() - - def headerbar_diagnostics_popup(): """ Method to verify Diagnostics Pop-up TD Op Mode @@ -178,6 +157,5 @@ utils.tstStart(__file__) startApplication(utility.aut("-q")) headerbar_settings_popup() - headerbar_information_popup_sd_card_section() headerbar_diagnostics_popup() utils.tstDone()