ContributionsMost RecentMost LikesSolutionsRe: Test Items is stopped even when single test script execution failed?Double click on project name.. it will open properties and then uncheck 'Stop on Error' checkbox.Re: How to use wildcards in a filename?I might be little off the topic but you can have your latest build copied to a constant location with same name. Your build team can help you with that. It is not the big effort to copy build at a folder say AutoTest with name latest.exeRe: How to get a exit code from msiexecI havent tried this approch, but will it work with msiexec? I am using msexec for silent uninstall and install for windows app. -AniketRe: Run test items in a groupHi Tanya, It is couple of extra steps and adding custom application to your test environment. If the best and easy way to organize your test is through test items and test items folders. Then to get continues integration with build it is lot easier if we can call test items folder. It also give me nice chart in test report :) -AniketRe: How call test item from command line?Thanks Mike for link. I hope testcomplete team implement this feature soon. Re: Run test items in a groupIs this feature implemented? I couldn't see it in TC9. Isn't it logical to run the test item than project item? -AniketRe: Pop up window not closing once the save button is pressedTypically pop-up open as different object. You need to enter it through there. Also if you validation for date textbox is not empty then your test will fail.Re: Can I validate multiple properties of an object at once?Are using Script or Keyword testing? Re: How to format jscript code in Test Complete IDEBump! It is difficult do the manual indentation. Is there any plan to add this in near future releases? Thanks How to get a exit code from msiexecI need to install a windows application and for that I am using msiexec command. I created the testedApp for msiexec.exe and I am passing the parameters. Everything works fine but I couldn't get hold of exit code from msiexec command. This is crucial to find out where install or uninstall is successful. The returned object of testedApp.Run() method do not have this info. The returned object comes as soon as install / uninstall start so logically it will not have that info. Following is the code snippet var TestApp, Params, SimpleParams; TestApp = TestedApps.Items("msiexec"); // Obtains the tested application parameters Params = TestApp.Params; // Obtains the simple run mode parameters SimpleParams = Params.SimpleParams; // Modifies the simple run mode parameters: SimpleParams.CommandLineParameters = "/i \ <msi file> /qb"; SimpleParams.Activate(); // Launches the tested application var obj = TestApp.Run();