ContributionsMost RecentMost LikesSolutionsdoes test execute support windows server 2012 ??Compatibility Test Execute 9.30 test complete 10.40 I have created scripts in c# using Connected Apps referring 10.40 test complete dlls. Is it possible to run the scripts using TestExecute 9.30? I keep getting error that it cannot create the ActiveX component Re: Run error ActiveX component can't create object var object = Connect.Sys["Browser"]("chrome"); This line when run through visual studio give me the error "Cannot create ActiveX component" Re: Generating a button click action for a third party plugin button/control I was able to resolve the above issue mithileshmaurya wrote: Hi I am working on a C1MainMenu. I am supposed to click on a menu which opens a list of submenu items .I want to click on one of these submenu items. When I record I get something like: frmMain["C1MainMenu"]["Click"]("Maintenance|Add Edit Concentration Rating Details"); The above line works perfectly file when the object is used from NameMapping file. But if I create the above object through descriptive programing : var parent = Aliases["SM"]["frmMain"]; var arrayprop = new Array("ClrClassName") var arrayval = new Array ("C1MainMenu") var bla = parent["FindChild"](arrayprop,arrayval,300) Log["Message"](bla.Exists) //I get "true" here .If I pass some coorinates it even clicks the menu item so I know that I am using the correct object.I dont want to pass the coorinates because the Submenu is displayed as an object of "MenuPopup".It is difficult to get the coordinates of each submenu item. bla["Click"]("Maintenance|Add Edit Rating Details"); I get a Type Mismatch error on this line. Please help.We have started a huge project using the TestComplete desciptive programming, is there a differance in the supported methods for namemapping objects and objects created through descritive programing Re: Generating a button click action for a third party plugin button/control Hi I am working on a C1MainMenu. I am supposed to click on a menu which opens a list of submenu items .I want to click on one of these submenu items. When I record I get something like: frmMain["C1MainMenu"]["Click"]("Maintenance|Add Edit Concentration Rating Details"); The above line works perfectly file when the object is used from NameMapping file. But if I create the above object through descriptive programing : var parent = Aliases["SM"]["frmMain"]; var arrayprop = new Array("ClrClassName") var arrayval = new Array ("C1MainMenu") var bla = parent["FindChild"](arrayprop,arrayval,300) Log["Message"](bla.Exists) //I get "true" here .If I pass some coorinates it even clicks the menu item so I know that I am using the correct object.I dont want to pass the coorinates because the Submenu is displayed as an object of "MenuPopup".It is difficult to get the coordinates of each submenu item. bla["Click"]("Maintenance|Add Edit Rating Details"); I get a Type Mismatch error on this line. Please help.We have started a huge project using the TestComplete desciptive programming, is there a differance in the supported methods for namemapping objects and objects created through descritive programing FindAllChildrenHi I am using Visual Studio IDE.My code is in c# . Im accessing all objects through Connected apps.But when I use the below code: textBoxes = w["FindAllChildren"]("WndClass", "Edit", 5); textBoxes = (new VBArray(textBoxes))["toArray"](); It gives compiler error saying cannot resolve "VBArray" object . What reference should I add so that the VBArray object does not give me a compiler error. Please help! test complete already in playing stateHello I am executing some scripts in batches through VS10.Now before running teh first batch I call Connect.RunTest() whcih works properly .After first batch I need to stop the playback by calling Connect.StopTest(); Then again I start the second batch which again calls Connect.RunTest(). Since the Connect.StopTest() takes some time to close I get an exception saying that TestComplete is already in playing state. How can I check if the Test Complete playback has completed before running it again?? Thanks in advance Re: not able to cast Var.delegate to var objectthe solution mentioned by you works perfectly functionality wise , but still for this line I get an error from my resharper saying that : "Cannot cast expression of type "AutomatedQA.script.var.varDelegate" to type "int". It is version 6.1 Re: Unable to SCROLL["ScrollIntoView"](true) did the job for me . Thanks!Re: Unable to SCROLLkeys[Down] method does not work with connected apps , it works only on Test complete IDE, is there any other way to scroll down.I am working with Visual Studio and I take objects through connected apps