ContributionsMost RecentMost LikesSolutionsRe: How to control wait time for ToURL commandExcellent, Options.Run.Timeout=10000 does work. Thanks to everyone for your help ! :) Re: How to control wait time for ToURL commandThanks Victor for the extra detail. I was unaware of that window and I see plenty of really useful options, thanks again! About my initial question, the Stop on error is already unchecked. My problem is not that the execution stops, but rather that it waits for one minute before proceeding. I am trying to remove that extra minute of delay. Is it possible to change the auto wait timeout in scripts? (Looked in the help, but no luck)Re: How to control wait time for ToURL commandThanks for the reply Victor. However, I am unsure what you mean. Could you please give me some more details?How to control wait time for ToURL commandHi, I am doing some web testing and I am using the following line: Aliases.iexplore.ToURL(<www.mysite.com>) When I browse to that page, I get a login popup asking for an username and password. However, the ToURL is waiting for the page to load (and it isn't because because of the credentials missing) for about a minute. Is it possible to configure something in TestComplete so the ToURL function only waits for 10 seconds fore example? (or not at all) Thanks in advance! Benoit Re: Invalid variant operationThank you Julia for your answer and sorry for the late reply. I have tried recently and it seems that everything is fine. It is pretty weird as I have seen many Invalid Variant errors recently. May I post a reply to this thread if the problem happens again? Thanks again. BenoitInvalid variant operationHi, I am doing a very basic operation, waiting for a button to be visible on screen. Here is my code: Call installerMainWindow.btnFinish.WaitProperty("VisibleOnScreen", true, Project.Variables.long_timeout) The long_timeout variable has been set to 10 minutes (600000). When I run Delay(Project.Variables.long_timeout), it does wait for the full 10 minutes. However, when I run the line entered earlier, it waits for around 1/10th of the time (around 1 minute), then, if the button is not found by that time, I get a runtime error: Invalid variant Operation. I have no clues what it's going on. I have used the WaitProperty operation dozens of time in my project without problem. Thanks in advance. BenoitRe: How to know what is the current hostNever mind :). Thanks again !Re: How to know what is the current hostThe line I use is this: if Sys.HostName = NetworkSuite.Hosts.ItemByName("win7-gen-san") then When I run it, I get a Runtime error: Object not set. Any idea why?Re: How to know what is the current hostThanks for the really quick answer !How to know what is the current hostHi, I am doing distributed testing. I am trying to determine what is the current host when I am running my job. How do I do that? Thanks in advance. Benoit