ContributionsMost RecentMost LikesSolutionsStuck on Synchronizing <internal> after TestProject is finished Hi, We have several Project Suites and want to run them on several VMs. There is no need of synchronization between the tests, therefore we have chosen the parallel testing with NetworkSuites. No syncronization point are defined in the Network Suites, but we always get the problem with the Synchronizing <internal>. Here is the set up: One master project with two hosts, one job with two tasks (for each host). Each task is a Project Suite with several Test Projects in it. And the problem: taks 1: the first Test Project of the Project Suite 1 is running task 2: the first Test Project of the Project Suite 2 is finished and paused until the first Project of the Project Suite in task 1 is also finished. Is there a way that there is no synchronization after the Test Projects and they do not wait for each other? SolvedRe: Global Name Mapping Thanks, it is a very promising solution :) but if I change something in the "globalNameMapping" file will TC be able to change/update all KeywordTests that are sharing the same NameMapping file? Global Name Mapping Hi, I am struggling with the following issue: I have several Project Suites with several Projects and many KeywordTests and I want to have a global name mapping, so I can easily change object names or properties in just one project. "Merge with" is a great option, but the same object is mapped differently in the different project: Project1: NameMapping.Sys...TTabSheet.PageA Project2: NameMapping.Sys...TTabSheet2.PageA and after merging I have to many objects with conflicts and I have to update all keywordtests... Name Mapping Templates does not work as well (https://support.smartbear.com/viewarticle/76306/ - Do not create name mapping templates for the Sysobject. TestComplete maps this object automatically and ignores any template defined for this object.) I would appreciate any suggestions or ideas… :) Re: Find Menu Items by name and not by index Thanks, but I am not sure what you exactly mean... In Object Browser I'm able to see the MenuItem and it has a name VCLObject('Item_Import') - but this still doesn't work: w.MainMenu.Click(File|Import|[0]|[0]|[0]) and this is in the additional info: Total number of items: 12. Items: '', '', '', '', '', '', '', '', '', '', '', ... Aliases.luks.IDAKTControl Any idea? Re: Find Menu Items by name and not by index sorry... The tested program is in delphi language and the menu is VCL.Menu.TMainMenu. Find Menu Items by name and not by index Hi, I am trying to access menu items by names and not by index. For example w.MainMenu.Click("File|Open...") does not work, but w.MainMenu.Click("File|[1]") works fine. Why TestComplete does not recognize SubMenu Items by their names? Thanks Re: Variable delay time Thanks guys, it works! it was a (typical) parent-child problem :). Re: Variable delay time Can you explain me how it (WaitAliasChild) works, probably I'm making a thinking errror. Aliases.ApplicationName.WaitChild('Aliases.ApplicationName.TextBox.OKButton', 10000) That doesn't work :) It waits 10s despite that the OKButton is visible. About the loop...I'm not sure that the loop solution will make the test faster than now with fixed delays. Re: Variable delay time Thank you for the replays... I already tried many things and nothing worked. Here my situation: I start an application, then I click on menu button in order to perform a certain calculation, after that I’m waiting for an OK button. So this wait time is different for the different tests and I want TestComplete to do something like that: “Wait 10s or until OK Button appears.” I already tried WaitWindow, WaitChild, WaitProperty and WaitVLCObject. Any suggestions :) Re: Variable delay time Hi , I have various delays between events, for example database updates or file-exporting... For some faster and smaller tests I'd like to reduce these delays in the entire test...or when the test is running on faster laptop. Something like that will be perfect :) TestDelay = Delay()*VariableParameter What is a "event-wrapper with Wait method"...sorry I am very new at TestComplete :). Thanks