ContributionsMost RecentMost LikesSolutionsRe: TestComplete tries to delete a script that is bound to source control right in the middle of a runI can't do that because I don't have an active maintenance subscriptionTestComplete tries to delete a script that is bound to source control right in the middle of a runI have a line on my test to try to open a window, but right when it's going to open it, TestComplete sends me this message: The 'Unit1' project item or some of its files will be deleted from the disk. Do you want to delete this item (files) from source control as well? This is the line: Call Aliases.Intelisis.Intelisis.MainMenu.Click("Cuentas|Personal|Personal") Is this a bug, or is there any way around it? Right now my solution is to unbind the files, run the test, and the bind it again.Re: Wait for one or another object at the same timeThank you very much Alex, I used something similar to solve itRe: Wait for one or another object at the same timeHi Mike, Peter I tried using the WaitProperty Method, but if the first object doesn't show up it will never start looking for the second one, and the same happens if I use an If/Then for each case. Thanks for your helpWait for one or another object at the same timeI have this piece of code that waits for one object or another to continue the process If Aliases.Setup.Error.Exists OR Aliases.Setup.Success.Exists Then Call Log.Message("Message") End If The problem is that if the first object doesn't exists and the second one does, it waits until the Auto-wait timeout finishes when the test realizes that the second object is the one that exists, making the test waste a lot of time if the Auto-wait timeout is set to more than 2 minutes. Is there any way I can make the test search for both objects at the same time?