How to create nested logs in UIautomation ios, e.g. created by logElementTree ()
I tried to do the following:
UIALogger.logStart("Log parent Started"); UIALogger.logStart("Log child Started"); UIALogger.logMessage("Message 1"); UIALogger.logPass("Log child passed"); UIALogger.logPass("Log Parent passed");
But this does not create nested logs in the Tools window
source share