Forum Discussion
Joberry
6 years agoOccasional Contributor
I have now converted all the Keyword tests to Scripts (I am happier with scripts anyway!), I have raised a support ticket to ask this question more formally.
|
I did look at Perfmon trace during the failed execution (Memory and CPU showed benine usage), The call stack showed 4 rows, so not eaxctly huge.
m_essaid
6 years agoValued Contributor
Hi,
What is the exception ?
You could surround your script with some "try/catch" or "try/except" blocks, and then get the exception message
try
your code here
except
Log.Message('an exception has been raised : ' + exceptionmessage);
end;- Marsha_R6 years ago
Champion Level 3
What happens if you move that failing test somewhere else in the list? Does it always fail on that one test or does it always fail on whatever the last test is?