ContributionsMost RecentMost LikesSolutionsDocumentation of QAComplete Control to TestExecute Our team is using QAComplete in cloud to control the local TestExecute run to perform testing. The issue is that there is no documentation about the connection process. Due to the computer system issue, the QAComplete sometimes cannot receive the final status from TestExecute causing many issues. So we would like to understand more about how QAComplete receive the status report from TestExecute, or any documentation for the connection between QAComplete and TestExecute. Thanks! Re: QAComplete cannot terminate TestExecute I mean I could do that. But starting the test is always fine for me. It is about stopping the test. We are using QAComplete to control the TestExecute to test in local computer, but the QAComplete cannot stop the TestExecute. Re: QAComplete cannot terminate TestExecute This issue happened some time ago, then got recovered. Then it happened last week and now it got recovered again. I know that there are some company refresh change made to the computers, but not sure what may have caused the issue. For now this problem has not been observed, but chances are that it could happen again next time. Re: QAComplete cannot terminate TestExecute I created a batch file to terminate the TestExecute to be initiated after my test is done. The batch could terminate the TestExecute, then QAComplete could receive the log. The issue is that the QAComplete will display all to be "Passed" even when the test is failed... I think the termination using command line will somehow send back the exit code or whatever code to QAComplete to indicate the result. Since the termination command is passed, the QAComplete will always display as passed... Re: QAComplete cannot terminate TestExecute Thanks. I am using batch file sometimes and I agree that it is very important to remember having the "/exit" in there. Re: QAComplete cannot terminate TestExecute The TestExecute is launched by QAComplete with information filled in the above window. The important part here is the Project path in the box "Project or Test to Run". I know using command line to run TestExecute could involve the "/exit" to make sure TestExecute to be closed, but in QAComplete, I don't see that option. Additionally, the exactly same setting can works for TestExecute in Window10 PC, but cannot work for TestExecute on Windows Server version... So it is really a pain here. QAComplete cannot terminate TestExecute I am currently using QAComplete in cloud to run tests on TestExecute in local. The QAComplete can run the test properly, but somehow it cannot close the TestExecute when I am using certain software. When running these tests, the whole test is done, but QAComplete will still count the time, and local TestExecute.exe is still shown as running. Additional info is that my local is a Windows Server version computer. The other setup to use Windows10 works fine for all my tests. Can someone help to contribute to any suggestions? I'm currently thinking about some setting change in QAComplete or TestExecute. SolvedRe: Automate Testcomplete with batch file So the application does not matter in this case, because the script can do the work separately with hard-coded data. We just want to automate the process. Re: Automate Testcomplete with batch file 1. for credentials, for example I need to run the first function under local user, then I need to run the 2nd function using a shared user credential. I could do each step separately by using two batch commands if I hard-code the input of the 2nd function, but I want to get the return value of the 1st function to be the parameter in the 2nd function. 2. I only want a string return from the 1st function. 3. I'm writing to run batch file/command line for this automation process, but I don't know how/where to store this return value from the 1st function. Again, I don't want to store the intermediate value in a separate file for security. Re: Automate Testcomplete with batch file Thanks for the response. My situation is that I need to launch TestComplete with different credentials. More specifically: 1. we need to have two batch commands: the first command run TestComplete function with the 1st credential, the 2nd command run TestComplete function with the 2nd credential. 2. The tricky part is that we would like to use the return value from the 1st function in the 2nd function, without storing the value in a file to ensure data safety. Please let me know if there is a way to do this.