kamahade
15 years agoRegular Contributor
class LogUtils static clearLog method valid ?
Hi,
I'm trying to call method clearLog in LogUtils supplied with SOAPUIPro
soapUI Pro 4.0.0, Build dist-131-2011-06-14, Build Date 2011/06/14
However, before I use when I looked at the API, the below methods doesn't exists anymore. If you feel otherwise, please let me know how to invoke this Clearlog method ? I want to run this method, everytime in my Groovy script test step.
I'm trying to call method clearLog in LogUtils supplied with SOAPUIPro
soapUI Pro 4.0.0, Build dist-131-2011-06-14, Build Date 2011/06/14
However, before I use when I looked at the API, the below methods doesn't exists anymore. If you feel otherwise, please let me know how to invoke this Clearlog method ? I want to run this method, everytime in my Groovy script test step.
def logArea = SoapUI.logMonitor
if( logArea != null )
{
def ix = logArea.indexOfTab( title );
if( ix >= 0 )
{
def logPanel = logArea.getComponentAt( ix )
logPanel.logList.model.clear()
}