<#if hasCustomParameters()>
Custom Parameters
    <#list customParameters as customParameter>
  • ${customParameter.key}: <#if customParameter.url> ${customParameter.value} <#else/> ${customParameter.value}
Test Suite Result Chart
Test Suite Summary
  • ${totalNumberOfScenarios} Scenarios in ${totalNumberOfFeatures} Features.
  • ${totalNumberOfPassedScenarios} passed / ${totalNumberOfFailedScenarios} failed / ${totalNumberOfSkippedScenarios} skipped.
  • Total Time: ${totalDurationString}
<#if hasFailedScenarios()>
Failed Scenarios
<#list reports as report> <#list report.elements as element> <#if element.failed>
Feature Scenario Duration
${report.encodedName} ${element.encodedName} ${element.returnTotalDurationString()}
<#if hasSkippedScenarios()>
Skipped Scenarios
<#list reports as report> <#list report.elements as element> <#if element.skipped>
Feature Scenario Duration
${report.encodedName} ${element.encodedName} ${element.returnTotalDurationString()}
<#if hasPassedScenarios()>
Passed Scenarios
<#list reports as report> <#list report.elements as element> <#if element.passed>
Feature Scenario Duration
${report.encodedName} ${element.encodedName} ${element.returnTotalDurationString()}