Index: tst_post/test.py =================================================================== diff -u -r0eb02c7f8376bc587ffa61662577c5495d219151 -rf7a09feb87aadabea430072f0cdafbba2f350933 --- tst_post/test.py (.../test.py) (revision 0eb02c7f8376bc587ffa61662577c5495d219151) +++ tst_post/test.py (.../test.py) (revision f7a09feb87aadabea430072f0cdafbba2f350933) @@ -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,4 +112,7 @@ hd_simulator.cmd_send_power_on_self_test_version_request() post_a_message_and_verify_progress_and_completion(MSGS_AND_CONDITIONS) - utils.tstDone() \ No newline at end of file + verify_ui_version() + + utils.tstDone() +