Forum Discussion
13 Replies
- tristaanogreEsteemed Contributor
I'm not sure what you mean by "exclude them from final log"?
As for starting test and ending test, in the help, look into the OnStartTest and OnStopTest event handlers.
- egiacomiContributor
Sorry maybe I explained myself wrong, i want to check the start execution of the first test and the end execution of the last test . For example if I use the event OnStartTest I can't know if it's the start of the first or second or third test
- tristaanogreEsteemed Contributor
How are you organizing your tests in TestComplete? Are you using TestItems to do so?
If that's the case, you could simply set your utility scripts as the first test items that execute and the last ones that execute. Then, in those tests, do a Log.Enabled = false until the utilities are done and then Log.Enabled = true when they are finished. That will turn on/off the test log for those scripts.