reporter.templates.report.part.test.step.vm Maven / Gradle / Ivy
#macro( stepActions $localStep $directCall)
#if (!$directCall)
$localStep.getName()
#end
#foreach( $action in $localStep.getStepActions() )
#if (${action.class.name.equals("com.seleniumtests.reporter.TestStep")})
#stepActions($action false)
#elseif (${action.class.name.equals("com.seleniumtests.reporter.TestMessage")})
#set ($messageType = $action.getMessageType().toString().toLowerCase())
#set ($messageType = "message-" + $messageType)
- $action.getName()
#end
#end
#end
#if ($status.toString().equals("passed"))
#set ($messageType = "")
#else
#elseif ($status.toString().equals("failed"))
#else
#end
$stepName - $stepDuration secs
#stepActions($step true)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy