ContributionsMost RecentMost LikesSolutionsRe: What do i need to test an application with testexecute on a virtual pcHi Allen, I want to perform a test on a virual machine. 1 test (job) with 4 tasks. See jobs.png. At the strat i get 3 errormessages : Type Message MessageEx Priority Link -1526396041 The host address specified in the ReportMaker task coincides with the host address specified in the Simapro task. Normal Type Message MessageEx Priority Link -1526396041 The host address specified in the Simapro task coincides with the host address specified in the Excel task. Normal Type Message MessageEx Priority Link -1526396041 The host address specified in the Simapro task coincides with the host address specified in the Word task. Normal All test should run after eachother on the same virual machine. What am i doing wrong? regards Ronald how to auto-wait for a propertycheckpointHi, How do i use auto-wait in the next line : aqObject.CheckProperty(Aliases.SetupSimaPro733.WizardForm.OuterNotebook.FinishedPage.FinishedHeadingLabel, 'WndCaption', 6, 'voltooid', false); I can put in an auto-wait in keyword test. But when converting to script there is no auto wait. The docs and video doesn't reveal how to use auto-wait in a (property)check regards RonaldRe: What do i need to test an application with testexecute on a virtual pchi Allen. Thanx! I would appreciate an example very much. I have an application installed on a virtual machine. I also copied the projectsuite i created with testcomplete. I would like to start the test on the virtual pc on my host. It would be nice if you could help me in Delphi script. regards RonaldRe: What do i need to test an application with testexecute on a virtual pcThis means scripting? There is no way to start a test from the host on a virtual machine by the use of a friendly menu? regards ronaldRe: What do i need to test an application with testexecute on a virtual pcOk installed it. But how do i start a test on the virtual machine. I want to start the test on the machine where i installed testcomplete. I could not find the answere in the doc's yet. regards ronaldWhat do i need to test an application with testexecute on a virtual pcWe have testcomplete 8.5. I want to test my application on a virtual pc. How do i get this done. Searched the forums and docs for hours but could not find the answer. We do not have virtual users. We want to test our application on multiple platforms. So we use virtual machines for each platform. The application is allready installed on these machines. How do i start my test on a virtual pc? regards Ronaldhow to delete a project suiteI can delete projects with remove. But how to delete the projectsuite?Re: name mapping for dynamic names with checkpropertyHi Jared, Turning off auto namemapping in the options solves this problem. But now it seems the end of an excelfile is not recognized. regeards ronaldRe: how to use an empty cel in an excelfile by data driven testsHi Louis, A work around is the same as a bug. Testcomplete claims to be complete, but it doesn't support a very simple issue like this one. The solution by David works ok. Putting a ' in the field. But it still is not a nice good way to go. I good live with it to put the text null in these fields, so it's obvious what the meaning is. To me a test must be as simple as possible to make sure you only find bugs in the application you want to test and not in the test itself. In some cases scripting can be useful, but i want to use it as little as possible. The only reason i transform my test to scripts is the huge difference in speed when the executes . Which, i think, also is a bug. regards ronald name mapping for dynamic names with checkpropertyHi, I have a web based application in which i have to perform a check in a data driven loop. It seems that the object i want to check can get different names. At the first iteration the check must look like : aqObject.CheckProperty(Aliases.firefox.pageAanmeldenInspecteurs3.panelWrapper.panelContentWrapper.panelInsp1NnnIsSuccesvolAanDeDat, 'innerText', cmpContains, 'is succesvol aan de database toegevoegd.', false); The next iteration the check must look like : aqObject.CheckProperty(Aliases.firefox.pageAanmeldenInspecteurs3.panelWrapper.panelContentWrapper.panelInsp2NnnIsSuccesvolAanDeDat, 'innerText', cmpContains, 'is succesvol aan de database toegevoegd.', false); panelInsp1NnnIsSuccesvolAanDeDat seems to change topanelInsp2NnnIsSuccesvolAanDeDat How can use just 1 check for al situations? I looked at the video which explains name mapping but i can't find the solution. regards Ronald