ContributionsMost RecentMost LikesSolutionsRe: From Chrome 46.0 back to Chrome 45.0 First, thanks for link to the forum thread, I missed it when doing general web searches for disabling Chrome updates. It's not that I have any desire to test Chrome 45, but I do need to control the test process, and having Chrome update in the middle of a test suite mucks up the process. The move to TestComplete 11 is a whole other set of issues. Now that it's known that Chrome updates cannot be reliably stopped, the test process will be modified to adapt to it. Re: From Chrome 46.0 back to Chrome 45.0 The following link has a couple of sources: http://superuser.com/questions/936432/how-do-i-install-a-previous-version-of-chrome The bigger problem is preventing Chrome from auto updating. So far, nothing really seems to work. Some success was gained with the registry settings in the attached screen shot, but by this morning Chrome was back to auto updating itself. Let me know if you have any success. Re: TestComplete 11.1 - performance now OK? Colin, have you used Google Update for Work to prevent automated upgrades? If so, was it sucsessful or not. It's on our latest VM templates, but has not been tested yet. https://support.google.com/installer/answer/146164?hl=en Re: [Distributed Testing] Some files get corrupted during transfer to slave Are TestExecute and TestComplete both using the same login ID? Re: [Distributed Testing] Some files get corrupted during transfer to slave This may help: https://support.microsoft.com/en-us/kb/2891362 Re: Distributed testing - failed verification One way around it is to use a start up script the sets the notice and consent prompt behavior. This way, the admins get to keep there policy and you're not bothered with it. You'll need a bat file that contains the following regedit.exe /s C:\YOURDirectory\YOURStartUp.reg Where YOURStartUp.reg contains: [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System] "ConsentPromptBehaviorAdmin"=dword:00000000 "ConsentPromptBehaviorUser"=dword:00000000 "EnableLUA"=dword:00000000 "legalnoticecaption"=- "legalnoticetext"=- You can get to the startscripts by typing gpedit.msc in the run box and then choosing--> Local Computer Policy --> Windows Settings --> Scripts (Startup/Shutdow) Re: Verification Failed: Unable to create a user session on the remote computer If you're seeing a legal notice when logging in manually, you'll need to remove it for the automated logins. It can be disabled in the following registry settings: [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System] "ConsentPromptBehaviorAdmin"=dword:00000000 "ConsentPromptBehaviorUser"=dword:00000000 "EnableLUA"=dword:00000000 "legalnoticecaption"=- "legalnoticetext"=- Re: Waiting for a window to close functionality. Jscript or keyword test. Henrik, this is for a similar situation in a Java SWT app: lMille = 0; do { w = Sys.Process("javaw").FindChild(["WndClass","Visible"],["SWT_Window0","True"],4); aqUtils.Delay(500); lMille += 500; } while (w.Exists && lMille < 45000); Re: Error when running TestExecute from Command Line Try the command as follows : & 'C:\Program Files (x86)\SmartBear\TestExecute 10\Bin\TestExecute.exe' "C:\Projects\My.Proj\Automated Testing\myAutomation\myAutomation.pjs" /r /p:myRegression Re: Execute a group of tests in Network Suite in series Good catch, try this, changes are in bold: //USEUNIT Script_1 //USEUNIT Script_2 //USEUNIT Script_3 function Main() { var lResult = 1; try { var asScripts = ["Script_1.Main()","Script_2.Main()","Script_3.Main()"] for (var i = 0; i < asScripts.length; i++) { eval(asScripts[i]); } } catch (ex) { lResult = 0; } return lResult;