automTest
6 years agoOccasional Contributor
Installing TestComplete 14 - Completely offline
Hey community,
I'm trying to install TestComplete 14 on an isolated system which has absolutely NO access to the internet. Nonetheless, the procedure that SmartBear placed is to either use the .c2v/.v2c files to activate the license (internet needed) or install the license manager (internet needed). The product key is in fact available, but being able to activate it without an internet connection currently seems impossible.
Has anyone encountered a fix to this?
Thanks.
I was able to solve this issue with this script:
function Setup() { //Run bat file from TestedApps var app = TestedApps.Items(0); app.Run(); Delay(5000); Sys.Refresh(); //Map console object var p = NameMapping.Sys.cmd.wndConsoleWindowClass; while (p.Exists) { //while bat is open, keep test running. Looks for text within the console window var IsOpen = p.WaitProperty("wText", "*Deleting dashboard records*", 1000); if (IsOpen == false) break; Aliases.cmd.RefreshMappingInfo(); } }