ContributionsMost RecentMost LikesSolutionsEditor intellisense and navigation does not work with declared objectsIn my (JScript) test scripts would like to use objects in this way (which runs fine in TestComplete) to e.g. for namespacing. var MyFunnyClass = { Alert: function( time, message) { alert(); } }; MyFunnyClass.Alert(); However the editor intellisense and navigation (Ctrl-click on method) does not work with this. Is there any plans to make it work or any workarounds I could use? BR, David Re: verify if object exists without errorThanks for trying to help out Mike but my problem to verify if an arbitrary object exists or not, in this case the panel. 'Exists' seems not to work properly as seen in my example, I expect it to return 'false'. Any workaround or other info on this would be appreciated. BR, David Click disabled item without warningHi, In scripted test is it possible to click an disabled item on the web page without getting the warning: "The action may be performed incorrectly, because the control is disabled."? BR, David (TC version 9.0.1312.7) verify if object exists without errorHi, Can you please clearify how to verify if an object exists without getting an 'unable to find the object' error? Below jscript code will not be able to verify a non existing panel: TestedApps["iexplore"].Params.SimpleParams.CommandLineParameters = "http://smartbear.com/"; TestedApps["iexplore"].Run(); var test1 = Sys.Browser("iexplore", 1).Exists; // => works var test2 = Sys.Browser("iexplore", 1).Page("http://smartbear.com/").Panel(999).Exists; //=> Error: Unable to find the object Panel(999) BR, David (TC version 9.0.1312.7) Re: Ajax call from scriptThank you Helen, this was exactly what I was looking for and it solved my problem. =)Ajax call from scriptHi, I am using TestComplete 8.70.727.7 and would like to communicate with a REST api using AJAX call from the (JScript) unit script code. Is that possible and if so can I get an example? BR, David