All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aventstack.extentreports.templates.spark.partials.bdd-content.ftl Maven / Gradle / Ivy

There is a newer version: 5.1.2
Show newest version
<#macro stepdetails test>
  <#if test.hasLog()>
    <#list test.logs as log>
      
<#if log.exception??> <#else>${log.details} <#if log.media??><@mediaSingle log.media />
<#if test.hasChildren()>
<#list test.children as node>
<#if test.hasChildren()> <#if node.bddType?? && node.bddType.simpleName=="ScenarioOutline">
<#list node.children as child>
${child.status?string}${child.name}
<#if TestService.testHasScreenCapture(child, true)>
<#list child.children as step>
${step.name} <@stepdetails test=step />
<#else>
<#list node.children as child>
title="${child.description}"> ${child.name} <@stepdetails test=child />




© 2015 - 2024 Weber Informatics LLC | Privacy Policy