Komal_Deotale
8 years agoOccasional Contributor
undefined: Automation server can't create object
I am getting this error since i downloaded the latest version of Test Complete. Earlier my script was running fine with 12.30 version. Please help me resolve this.
function CreateAutomationObject(strLibraryClassName)
{
// Variables
var objAutomation; // Script automation object
// Create script automation object
try {
objAutomation = new ActiveXObject(strLibraryClassName);
return(objAutomation);
}
catch (objError) {
Log.Error(StrTestID + ": " + objError.message);
Runner.Stop(0);
return(null);
}
}
Komal D
komal.deotale@emerson.com