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

com.aventstack.extentreports.view.v3html.test-view.v3-html-bdd.ftl Maven / Gradle / Ivy

There is a newer version: 5.1.1
Show newest version

<#if test.description?? && test.description?has_content>
${test.description}
<#list test.nodeContext.all as node>
<#if TestService.testHasCategory(node)>
<#list node.categoryContext.all as category> ${category.name}
${TestService.getRunDuration(node)}
${MaterialIcon.getIcon(node.status)} ${node.behaviorDrivenTypeName}: ${node.name}
<#if TestService.testHasScreenCapture(node)>
    <#list node.screenCaptureContext.all as sc>
  • panorama
<#if node.description?? && node.description?has_content> ${node.description}
<#if TestService.testHasChildren(node)>
    <#list node.nodeContext.all as child>
  • ${MaterialIcon.getIcon(child.status)}${child.name}
    <#if TestService.testHasScreenCapture(child)>
      <#list child.screenCaptureContext.all as sc>
    • panorama
    <#list child.logContext.all as log> <#if log.exceptionInfo??> <#else>
    ${log.details}
    <#if TestService.testHasChildren(child)>
      <#list child.nodeContext.all as gc>
    • ${MaterialIcon.getIcon(gc.status)}${gc.name}
      <#if TestService.testHasScreenCapture(gc)>
        <#list gc.screenCaptureContext.all as sc>
      • panorama
      <#list gc.logContext.all as log> <#if log.exceptionInfo??> <#else>
      ${log.details}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy