Phanindra
5 years agoOccasional Contributor
unable to connect to the remote instance of testcomplete (testexecute)
I am seeing the following message if I try to run the tasks synchronously. However, I am able to run individual tasks separately through job details page.
The firewall is turned off in both master and slave machines, and the verification is also successful. Please find the attached file for more details.
TestComplete Version: 14.50.976.7 x64
I have also tried to run the tasks through script but I got same error.
Script:
function Test()
{
var JobName = "CRUD_Operations";
var Job = NetworkSuite.Jobs.ItemByName(JobName)
var Tasks = Job.Tasks
var Num = Tasks.Count
for (var i = 0; i < Num; i++)
{
//Tasks.Items(i).Run(true)
Tasks.Items(i).Run(false)
}
}
I would like to give you some more information on the set up which I am using to simulate the distributed testing;
I have a node locked license (which is a server) (Version: 14.50.976.7 x64)
On two VM's I have installed a trial version of TestExecute. (Version: 14.50.976.11)
Appreciate your help on the same.