NK00010010
11 years agoOccasional Contributor
Error line in test log doesn't redirect me to the line of error source when I double-click on it.
Hi all. Help me please with:
From the TC tutorial:
Searching for the Cause of an Error:
To view the test command that was running when the error occurred, double-click the error message in the log. TestComplete will open the test editor and highlight the test command. Explore the test to understand what it performed when the error occurred.
But in my case when I double-click on error line I get redirect to the line: Log.Error("Exception", exception.description)
of my main routine:
function Main()
{
try
{
}
catch(exception)
{
Log.Error("Exception", exception.description);
}
}
What I'm doing wrong? (Test Complete 10.50.2702.7)