ContributionsMost RecentMost LikesSolutionsWaitPage sometimes works incorrectSometimes we got an error like this: Type Message Time Link The object does not exist. 11:01:59 You are trying to call the "Click" method or property of the "item" object that does not exist. The place where the error raised is very usual (I've marked it with italic bold font): var page = ie.WaitPage(s_URL + "*", 10000); if(page.Exists) test2(page); function test2(page) { var qSearch = page.NativeWebObject.Find("outerHTML", "*CspSearchComponent1_SearchTextBox*", "INPUT"); qSearch.Click(); } What we do wrong? Re: TestComplete crashes if ScriptHost crashedOK, thanks. We can upload you a virtual machine disk (.vhd) with our product preinstalled. Re: TestComplete crashes if ScriptHost crashedWe can't find such folder after crash occured (see screenshot). Do we need to set up any options to enable crash dump generation? TestComplete crashes if ScriptHost crashedHi! We have encountered the problem when used our ADSI provider inside TestComplete. After some investigations we have discovered the simple scriptlet that crashes Windows Script Host if runned via cscript.exe. This very scriptlet executed inside TestComplete crashes full application. It would be nice if TestComplete was able to "catch" such problems and just restart script host to continue next tests execution. Next is the problem script. var strDN= "DC=domain,DC=com"; var OU = "OU=OU%1"; // here is the main trouble - the percent symbol var s_ObjectClass = "organizationalUnit"; var strService = "myserver.domain.com"; var strUser = "domain\\Administrator"; var strPass = "password"; var adsPath = "EDMS://" + strService + "/" + strDN; var intServerBind = 32768; var openDS = GetObject("EDMS:"); // get ActiveRoles Server provider var o_Container = openDS.OpenDSObject(adsPath, strUser, strPass, intServerBind) try { var obj = o_Container.Create(s_ObjectClass, OU); obj.SetInfo(); // here is the crash point } catch(ex) { WScript.Echo(ex.Message); }