Forum Discussion
chrisb
11 years agoRegular Contributor
One 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