Forum Discussion
tinauser
13 years agoFrequent Contributor
Hi,thanks for the answer.
The test application is launched within the following function
function startPopulateHelper()
{
//variables
var TestApp ;
try
{
//fetch the Testedapp
TestApp = TestedApps.Items("Ident_PersistenceAccess_PopulateHelper");
//set the path, if given (should be the same where the Ident.exe is located)
if (ProjectSuite.Variables.VariableExists("identPath"))
TestApp.Path = aqFileSystem.IncludeTrailingBackSlash(ProjectSuite.Variables.VariableByName("identPath")) ;
//run the application
TestApp.Run();
return true;
}
catch(e)
{
Log.Error("Could not run the application", e.description);
return false;
}
}
It does not close neither with TestApp.Close() nor with TestApp.terminate()
The test application is launched within the following function
function startPopulateHelper()
{
//variables
var TestApp ;
try
{
//fetch the Testedapp
TestApp = TestedApps.Items("Ident_PersistenceAccess_PopulateHelper");
//set the path, if given (should be the same where the Ident.exe is located)
if (ProjectSuite.Variables.VariableExists("identPath"))
TestApp.Path = aqFileSystem.IncludeTrailingBackSlash(ProjectSuite.Variables.VariableByName("identPath")) ;
//run the application
TestApp.Run();
return true;
}
catch(e)
{
Log.Error("Could not run the application", e.description);
return false;
}
}
It does not close neither with TestApp.Close() nor with TestApp.terminate()
Related Content
- 4 years ago
Recent Discussions
- 5 hours ago
- 6 hours ago
- 4 days ago