Index: suite_leahi/tst_headerbar_information_popup/test.py =================================================================== diff -u -r57c9777c3d6cf91c6a3bb03a4d3f65098997e4fc -r4ae35475c883bf1b41279ffd753290ce2a2efc40 --- suite_leahi/tst_headerbar_information_popup/test.py (.../test.py) (revision 57c9777c3d6cf91c6a3bb03a4d3f65098997e4fc) +++ suite_leahi/tst_headerbar_information_popup/test.py (.../test.py) (revision 4ae35475c883bf1b41279ffd753290ce2a2efc40) @@ -11,6 +11,7 @@ # 6 Set and Compare Information Parameters at their values Beyond the Maximum Allowed # 7 Set and Compare Information Parameters at their values Below the Minimum Allowed +import os import names import subprocess from configuration import config @@ -65,7 +66,8 @@ """ Executes the AUT with the --version argument and captures the output. """ - command = [aut_path, "--version"] + actual_aut_path = os.path.join(aut_path, "leahi") + command = [actual_aut_path, "--version"] # Running the command and capturing the output. result = subprocess.run( command, @@ -145,7 +147,8 @@ ) dd_simulator.dd_serial(dd_serial) - ui_version = get_aut_version(config.AUT_PATH) + aut_path = currentApplicationContext().cwd + ui_version = get_aut_version(aut_path) version_details = { "OS Version" : "123.123.123.20230628230011",