Hi,
As I set up my framework, I need to stop test item execution at any error and at this moment go to the next test item.
Generaly that's what the robot does.
But I noticed that there are some errors that stop all the project, and consequently don't save the report on the disk and don't send the summary by mail.
It's errors like runtime errors, files not found, ...
Do I have somewhere a parameter to set up to go to the next test item even in theses cases ?
Thank you in advance,
Regards,
Mehdi
Another kind of error that stops everything is when I use a variable that haven't been declared before (I use Delphi script).
That's the stop on exception setting. You set that on the TestItems as well. you may need to select to view the column.
Hi Robert,
I do the following for each error :
function GeneralEvents_OnLogError(Sender; LogParams); begin Project.Variables.VariableByName['ErrCount']:= Project.Variables.VariableByName['ErrCount'] + 1; Runner.Stop(True); end;
Do you mean that having this code I should set up TestComplete like this ?
Subject | Author | Latest Post |
---|---|---|