Forum Discussion
2 Replies
- chrisbRegular ContributorOne way to see which test case is currently running is to get the name of the current test and display it in the 'indicator' that is displayed when tests are running. I have a script for the OnStartTest event that is triggered at the start of each test execution and includes these two lines to do the message:
var currentTestItem = Project.TestItems.Current.Name;
Indicator.PushText(currentTestItem);
See support.smartbear.com/viewarticle/55370 - AlexKarasCommunity HeroHi Ganapati,
You can use Indicator object to display the information that is useful to you. See help for the Indicator object for more details.