I was just curious if there is a way of getting the time associated with a step as it appears in the log file, I want to store this as a variable within Ranorex.
Danke!
System.DateTime timeBefore = System.DateTime.Now; // do your action System.DateTime timeAfter = System.DateTime.Now; Report.Info("Time: " + (timeAfter - timeBefore));Regards,