ContributionsMost RecentMost LikesSolutionsRe: TestComplete finished exit script with code: -4058 Hi, thanks for the reply. I have some more logging, but still can't figure out where the problem lies. I run this via command line: C:\BuildAgent\work\13966bbc6081e09d\testcomplete>"C:\Program Files\nodejs\node.exe" StartTest.js TestExecute SystemTest.pjs CityControl NL_RegressionTest NL_RegressionTest C:\BuildAgent\work\13966bbc6081e09d\testcomplete\TeamCityBackupResults.txt C:\BuildAgent\work\13966bbc6081e09d\testcomplete\TeamCityResults.txt ===== Start TestRun ===== --- Init --- Clear file: C:\BuildAgent\work\13966bbc6081e09d\testcomplete\TeamCityBackupResults.txt Clear file: C:\BuildAgent\work\13966bbc6081e09d\testcomplete\TeamCityResults.txt -- Command args -- 0: C:\Program Files\nodejs\node.exe 1: C:\BuildAgent\work\13966bbc6081e09d\testcomplete\StartTest.js 2: TestExecute 3: SystemTest.pjs 4: CityControl 5: NL_RegressionTest 6: NL_RegressionTest 7: C:\BuildAgent\work\13966bbc6081e09d\testcomplete\TeamCityBackupResults.txt 8: C:\BuildAgent\work\13966bbc6081e09d\testcomplete\TeamCityResults.txt --- Init Done --- --- Start TestComplete --- ##teamcity[buildStatus status='SUCCESS' text='{build.status.text}...Running TestExecute scripts'] --------------------------------------- !! Er is iets onverwacht misgegaan zie onderstaande error !! { Error: spawn EACCES at exports._errnoException (util.js:1018:11) at ChildProcess.spawn (internal/child_process.js:319:11) at exports.spawn (child_process.js:378:9) at run_cmd (C:\BuildAgent\work\13966bbc6081e09d\testcomplete\StartTest.js:57:14) at StartTest (C:\BuildAgent\work\13966bbc6081e09d\testcomplete\StartTest.js:119:21) at Object.<anonymous> (C:\BuildAgent\work\13966bbc6081e09d\testcomplete\StartTest.js:148:1) at Module._compile (module.js:570:32) at Object.Module._extensions..js (module.js:579:10) at Module.load (module.js:487:32) at tryModuleLoad (module.js:446:12) code: 'EACCES', errno: 'EACCES', syscall: 'spawn' } Any idea? TestComplete finished exit script with code: -4058 I'm trying to run one of my testscripts via TestExecute, but I'm getting this error message: TestComplete finished exit script with code: -4058 This is not one of the mentioned error codes in the manual, so I cannot figure out what the problem is. Can anyone help me? Re: After Dialog popup the process becomes inactive on Android The function worked just fine in earlier versions of TC. Since I upgraded to the latest version of TC, the problems occured. I think I need to contact support about it. Thanks anyway. After Dialog popup the process becomes inactive on Android Hello TC members, I'm facing the following problem on my Android with TC. - We select a text in a list which results in a popup. - In the popup we select the desired value and the popup closes. - Now we need to select a confirmation button to go to the next screen, but we cannot click on it. We wrote following function for it: function SelectPromotedActionButton(StopOnError) { WaitUntilImageButtonAppears("buttonImageView",100,StopOnError); var SearchVars = Array("ObjectType", "ViewID", "VisibleOnScreen"); var SearchItems = Array("View", "buttonBorder" , "True"); var Button = NameMapping.Mobile.Device.Process(activeProcess)["FindChild"](SearchVars, SearchItems, 50) TC cannot find var Button and therefore not click on it. We made a dirty workaround for it to rotate the device to Landscape and back to Portait to activate the process again, but that is not a proper solution for it. Can someone help me out? Thanks!