ContributionsMost RecentMost LikesSolutionsCustom Issue/item type and usage Hello all - Wondering if it's possible to create a custom issue or entity type and form associated with it to manage the new item type records. Then in other issue type records, like to add a custom field to refer this new issue type/entity. Is this possible in Zephyr Scale or any other versions? Appreciate if anyone shed some light. Re: TC11 Findchild extremely slow I suggest you to tell TestComplete to go and find the objects with in the specific browser you are going to run. Set UsernameTextbox = Sys.Process("iexplorer").FindChild(Array("ObjectType","ObjectLabel","VisibleOnScreen"),Array("Textbox","Username","True"),10,True) or Set UsernameTextbox = Sys.Process("chrome").FindChild(Array("ObjectType","ObjectLabel","VisibleOnScreen"),Array("Textbox","Username","True"),10,True) If you ask TC to find blindly on the whole system, then obviuosly it would take lot of time. Have some Project Variable for whic browser to run and select the browser while start running. Re: Navigate to a specific URL action not showing? I think you can use Browsers collection here like if you added your browser to the collection. Browsers.Item(btIExplorer).Run url Also you will be having Run Browser and Navigate keywords. https://support.smartbear.com/viewarticle/68303/ Re: alter Sys.UserName at run time I guess you are talking about Login As Different User functionality. Check with developers for Login as Diff User URL and try to launch with that. Re: Navigate to a specific URL action not showing? Try with TestedApps you have. TestedApps.chrome.ToUrl("www.yahoo.com") or Sys.Process("chrome.exe").ToUrl("www.yahoo.com") Also below additional help for Chrome will help. http://support.smartbear.com/viewarticle/71367/ Re: Traverse a Tree in Find Object He is saying to write some helper function like below and utilize. Function FindObject(parentObj, intLevel, strPropChild1,strPropChild2, ...) Dim intFind For intFind = 1 TointLevel Set parentObj=parentObj.Find("strPropChild" & intFind) 'Here you can pass the data like: "ID=ABCD;Name=abcd" and do the manipulation and pass to Find 'Also handle the errors Next SetFindObject = parentObj End Function For Ex: Consider the below hierarchy and their properties parent1 --> ID=p1 - Child1 ---> ID=c1 and class=c1 - Child2 --- > Name=abc Set finalObject =FindObject(parent1, 2, "ID=c1 and class=c1", "Name=abc") Re: how to create data link properties in jscript using test complete? I believe you are looking for uploading file to Stores from script. If so, you can do like below. https://support.smartbear.com/viewarticle/69809/ Re: Traverse a Tree in Find Object Not sure what you are expecting. If you want to access objects in the child levels, you can use depth. If you have unique properties, then you can do by passing DEPTH. someParent.Find(PropName1, PropVal1, Depth) For Ex:Your object is in 3rd sub level from your parent; (You can see the hierarchy using Object Explorer) -- 3rdParent --- 2ndParent (1st sub level) --- 1stParent (2nd sub level) --- yourObject (3rdsub level) 3rdParent.Find(PropName1, PropVal1, 3) Based on the DEPTH you are passing, FIND will search up to that level using the passed properties/values. Re: How to check the connection string is active or not? If I got you correctly, You can check the connection status using connObject.State If its 0, not active; 1 means active and you can go and Query. Re: Not able to copy a file to shared folder which is located in another vm though it is accessible Did you tried with simple code, without network mapping. Set oFSO = CreateObject("Scripting.FileSystemObject") oFSO.CopyFile "C:\Files\Test.txt", "\\compname\c$\destination_Folder\Test.txt", True If not working, try to manually MAP to the network and pass the network path and try.