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

com.aventstack.extentreports.templates.spark.partials.dashboard.ftl Maven / Gradle / Ivy

There is a newer version: 5.1.2
Show newest version
<#compress>

Started

${report.startTime?datetime?string["${timeStampFormat}"]}

Ended

${report.endTime?datetime?string["${timeStampFormat}"]}

${parentHeading} Passed

${report.stats.parent?api.get(Status.PASS)?c}

${parentHeading} Failed

${report.stats.parent?api.get(Status.FAIL)?c}

${parentHeading}
<#if report.stats.sumStat(report.stats.child) != 0>
${childHeading}
<#if report.stats.sumStat(report.stats.grandchild) != 0>
${grandChildHeading}
<#if report.stats.sumStat(report.stats.log) != 0 && displayEvents>
Log events
<#if config.timelineEnabled == true>

Timeline

<#if report.authorCtx.set?size != 0>

Author

<#list report.authorCtx.set as author>
NamePassedFailedSkippedOthersPassed %
${author.attr.name} ${author.passed} ${author.failed} ${author.skipped} ${author.others} <#if author.size()!=0>${(author.passed/author.size())*100}%<#else>0%
<#if report.categoryCtx.set?size != 0>

Tags

<#list report.categoryCtx.set as category>
NamePassedFailedSkippedOthersPassed %
${category.attr.name} ${category.passed} ${category.failed} ${category.skipped} ${category.others} <#if category.size()!=0>${(category.passed/category.size())*100}%<#else>0%
<#if report.deviceCtx.set?size != 0>

Device

<#list report.deviceCtx.set as device>
NamePassedFailedSkippedOthersPassed %
${device.attr.name} ${device.passed} ${device.failed} ${device.skipped} ${device.others} <#if device.size()!=0>${(device.passed/device.size())*100}%<#else>0%
<#if report.systemEnvInfo?size != 0>

System/Environment

<#list report.systemEnvInfo as info>
NameValue
<#if info.name??>${info.name} <#if info.value??>${info.value}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy