Index: tst_post/test.py =================================================================== diff -u -red643e2f1d5f671399fa0120599511fbc9d841f0 -r04711aaf7199d377c5cad119ab3ab97e7093d09c --- tst_post/test.py (.../test.py) (revision ed643e2f1d5f671399fa0120599511fbc9d841f0) +++ tst_post/test.py (.../test.py) (revision 04711aaf7199d377c5cad119ab3ab97e7093d09c) @@ -68,7 +68,15 @@ """ progress_bar = waitForObjectExists(names.o_progress_bar) return progress_bar.value - + +def verify_ui_version(): + """ + Method to verify ui version of application. + """ + version = hd.get_ui_version() + test.xcompare(version, "current_version", "To do current version") + + def verify_final_message_posted(final_msg=None, final_msg_posted=None) -> None: """ method to verify the indication of final @@ -104,5 +112,6 @@ hd_simulator.cmd_send_power_on_self_test_version_request() post_a_message_and_verify_progress_and_completion(MSGS_AND_CONDITIONS) + verify_ui_version() utils.tstDone()