How to get the execution Status if Passed or Failed
SOLVED- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
How to get the execution Status if Passed or Failed
Hi Guys,
Another Newbie question here:
I have a set of 7 automated test and the last part will send the execution result using sendmail, this works perfectly if All the 6 Testcases passed.
If any of the 1-6 testcases failed, my SendMail function is not executed, we dont have any email notification, any idea how to do that?
ex. if 1st test failed, should still should still execute SendMail..
Any comments are highly appreciated.
Thanks in advance
Solved! Go to Solution.
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Most likely you have "Stop On Error" set to true in Tools | Current Project Properties | Playback. As soon as an error gets logged, this will cause your test project to halt immediately, preventing any future tests to execute in that run.
My recommendation is to turn off any and all options that automatically stop the project on an error and build your code/tests in such a way that they will halt the individual test on an error but not halt the whole project.
Robert Martin
[Hall of Fame]
Please consider giving a Kudo if I write good stuff
----
Why automate? I do automated testing because there's only so much a human being can do and remain healthy. Sleep is a requirement. So, while people sleep, automation that I create does what I've described above in order to make sure that nothing gets past the final defense of the testing group.
I love good food, good books, good friends, and good fun.
Mysterious Gremlin Master
Vegas Thrill Rider
Extensions available
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thanks for your suggestion. It works.
This is a good start for me to tweak some more when handling execution status 🙂
Louiselaine!
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Louiselaine,
In addition to what @tristaanogre said, I suggest you to add to the event "OnLogError" the following script :
function GeneralEvents_OnLogError(Sender; LogParams);
begin
Runner.Stop(True);
end;
See the help for the True paramete of Runner.Stop
It will pass to the next test item...
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi @m_essaid
Thanks for your reply, you suggestion is good! knowing that I am know to TestComplete.
Will take a look it this too.
Regards
Louiselaine
