ContributionsMost RecentMost LikesSolutionsRe: out of the window boundsHi Joffre, Only suggestions from what I have experienced when this error occured for me: 1. Is the btnNew VisibleOnScreen (TestComplete can only click what you as a user can see) 2. Are you attempting to click the object that you actually expect? (for example the application I was testing had two "All" radio buttons and my script had been attempting to select the one I hadn't intended it too) Hope this helps! GrantGood practice to use NativeWebObject with browsers other than Internet Explorer?Hi, I am running the following code on various browsers (IE7, IE8, FF and Chrome), with success it seems: arrProperty(0) = "tagName" arrValue(0) = "SPAN" arrProperty(1) = "contentText" arrValue(1) = arrDataFromDataDriver(0) Set objLink = objPage.NativeWebObject.Find(arrProperty(1), arrValue(1), arrValue(0)) I have used the ObjectSpy on a TextNode and Panel for a particular object and in the properties I see NativeWebObject in IE7, NativeFirefoxObject in Firefox, and NativeChromeObject in Chrome. Although the NativeWebObject property is not available in Chrome and Firefox for this object, it seems to return the object I am searching for. Is there anything I should be aware of or cautions with using NativeWebObject for testing in Chrome and Firefox browsers please? Thank you, GrantRe: Can I upgrade from VBScript 5.7 to VBScript 6.0 to use this with TestComplete Hi, Thank you all for your replies! I was under the impression that there is a VBScript 6.0 which introduces classes to VBScript and had been thinking that this could be useful. It would appear from Hugo's message that I misunderstood the article I found. Re: How do I document my test scriptHi Richard, Notepad++ is capable of opening many document types, from File in Notepad++ open the folder containing the source files you're interested in then open the scrit files that are associated with the scripts(s) you are working with. If there is a particular text (e.g. variable name) you are interested in, double click on it in an opened script to view which files it occurs in. For example this will help to view where the function / variable etc occurs. I found this approach helpful to gather my wits on "what was going on" in the code. Please do let me know if you have any more questions. Wish you good results! Re: Randomized Data-Loop Testing - is it possible?Hi Hilary, I am assuming that "Keywork Test 3 - Select a User ID" means literally that the requirement is to submit a unique User ID in order to create the account. Are you familiar with any of the coding languages that are available for writing code in TestComplete? Here's a good example on how to generate a random string in VBScriptRe: Randomized Data-Loop Testing - is it possible?Hey, that's an interesting post, thank you for sharing your question. I'm sure members of the community would prefer posts to be kept within a single forum, rather than broadcast across forums, would you agree? Re: Object Not Exist ErrorHi Deepak, I use the following syntax (with brackets), which works for me. If Not (ObjectToFind.Exists) Then Re: TestExecute does not start browserHi Joachim, Have you tried Browsers.Item("chrome").Run ... or try adding Chrome to your TestedApps. This helped me resolve a similar issue with starting a browser in TestComplete. Hope this helps!How to trigger test upon XMLHTTPRequest complete?Hi, I'm looking to start a test when an XMLHTTPRequest has completed, but have a few challenges: 1. The AJAX modal spinner does not always appear, even when the request has been initiated. 2. The AJAX modal spinner does not usually display for the complete duration of the request. 3. The ObjectSpy does not focus on the AJAX modal spinner when it is visible on the screen and I hover the ObjectSpy pointer over it. 4. I believe that checking for the readyState (of 4 for complete) from the XMLHTTPRequest by using TRACE in a "sniffer" script is not an option. Has anyone encountered such a problem or have any suggestions please? Thank you, GrantRe: FindChild is not working properly on Chrome 23Hi Geeth, Did you find a solution? You might be interested in contentText Property (Web Objects)