ContributionsMost RecentMost LikesSolutionsExecute testitems / suites from testexecute.Hello. I have some issues getting the grasp on how I can execute batch runs in TestExecute using a bat file. I can execute specified scripts and methods. But I want to select specified testsuites with testexecute without using testcomplete to check what to do before, because the test system we have does not have testcomplete installed and it's rather inefficient to set it up on the development machine and check in / check out. In the screenshot I show an example stucture where I want to be able to execute the following 3 options: y and underlying z and g a and underlying b which has underlying c,d and e e "C:\Program Files\Automated QA\TestExecute 8\Bin\TestExecute.exe" "<path to suiite>\TCProjectSuite.pjs" /r /p:Main <input magic here> /e using the above without the input magic here I will execute all preselected units. I can also use the following: "C:\Program Files\Automated QA\TestExecute 8\Bin\TestExecute.exe" "<path to suiite>\TCProjectSuite\TCProjectSuite.pjs" /r /p:Main /u:e /rt:Run /e that will execure the Run function in e. But I don't see any option to select the 3 dots above and I assume this is a fairly common wish for testexecute without opening in testcomplete and check what you wan't run. // AndreasCan't catch exceptions from extensions.Hello, I have the following issue (somewhat simplified): I have an extension in javascript that evaluates parameters in and if necessary throws an exception. Problem is that if the extension script throws the exception, TestComplete cannot catch it. Here is a simple test showing the issue: extension.js: function testThrow() { throw new CustomException("Catch!!!"); } function CustomException(text) { this.name="CustomException"; this.message=text; } description.xml: <?xml version="1.0" encoding="UTF-8"?> <ScriptExtensionGroup> <ScriptExtension Name ="Test Object" Author="me" Version="0.1" HomePage="None"> <Script Name ="extension.js"> <RuntimeObject Name="Tests" Namespace="TEST"> <Method Name="testThrow" Routine="testThrow"> </Method> </RuntimeObject> </Script> </ScriptExtension> </ScriptExtensionGroup> testfunction in testcomplete: function TestThrow() { try { TEST.Tests.testThrow(); } catch(ex) { Log.Message(ex.name + ": " + ex.message); } } I get the screenshot as listed below and it works if I throw in testcomplete, but not between extension and testcomplete. // Andreas Re: Testexecute with CLR not working on standalone system.Seems that the new machine cannot load the external Dll. I do not get it in autocomplete window for some reason. all extensions is activated as far as I know so I don't see why this should be an issue. I have tried to move the dll as well and adding it again. Also tried to install testcomplete on the target machine and that does not work either. I always get that it is null or not an object in the calls towards the DLL. // AndreasTestexecute with CLR not working on standalone system.Hello I have some issue to get testexecute to work with an externals CLR on a system I just installed. I have the script working and running with both testcomplete and testexecute on a development machine but on a new system I get object cannot be found when a script extension is calling a method from a dotNet call. Is there something that needs to be installed to make this work except dotNet framework and testexecute? The only difference I see on the systems is that one has TestComplete installed and the other does not. // AndreasRe: Save a region to a folder deeper than 1 map.More of a setup for now. Sadly we have built QT 4.6.4 with GCC which is not supported so for now we need to use screenshots to rely on our tests. And ofcourse there was a change in the latest release that made all the screencomparisons obsoloete. So I try to do a setup function for new versions that compares the old piture and see if it's still viable for identifying known states. Problem is that we have them organised in the visual folders and have to move them afterwards if they are replaced.Re: Save a region to a folder deeper than 1 map.Yep, that is what im trying to do.Re: Save a region to a folder deeper than 1 map.Version is 8.50.618.7 and trying today I can not get it to go to the "virtual" Folder1 even. I however noticed that they occur on the disk folder. Is there some way to store it to the virtual folder so the structure looks like before in the testcomplete project but it's physical under the <project>Stores/Regions/ folder?Save a region to a folder deeper than 1 map.Hi, I have some issues making Regions.Addpicture to work in several folders. I have the following folder structure: Folder1 Folder11 Folder111 So Folder 111 is under Folder11 as well as Folder 11 is under Folder1 I want to add a picture under "\\Folder1\\Folder11" and doing this with javascript I do the following call: Regions.AddPicture(picture, name, false, "\\Folder1\\Folder11"); This will add the picture with the name name under Folder1. Is this a known issue that you cant add it several folders down from Regions? // AndreasRe: Enabled always true with QT 4.6.4.Thank you for the response. Testcomplete does not recognise the QT controls, we have not renamed the libraries, although they have been compiled from source code with Mingw and gcc 3.4.5, can this be an issues and should we try to use the default package delivered by QT with binaries?Re: Wait for a region.compare to occur with max time.Thank you for your response, one more question though, is it possible to get milliseconds as well? Or is that in another object?