email2vimalraj / CucumberExtentReporter

A plugin to generate the cucumber jvm custom html report using ExtentsReport
http://www.vimalselvam.com/cucumber-extent-reporter/
MIT License
58 stars 75 forks source link

Scenario Outline steps are not visible in ExtentX #55

Open andisan86 opened 7 years ago

andisan86 commented 7 years ago

Description:

Cucumber JVM supports "Scenario Outline". With Scenario Outline, user is able to iterate though pre-determined values with the same scenario. Below is an example, and comparison with Scenario: ` Scenario Outline: With outline Given Print different name Examples: |name| |boo| |boo2|

Scenario: Without outline Given Print my name `

Expected result:

CucumberExtentReporter should display each of Scenario Outline run in different scenario. This should works for both default HTML report and ExtentX report.

Actual result:

The ExtentX report displays each run in different sub-scenario entries, however the steps are not visible, ie. clicking either With Outline entries do not expand: image

Conversely, the default HTML report does display each run in different sub-scenario entries as expected: image

I think this is isolated to CucumberExtentReporter only. Tried with out of the box solution for ExtentX, it seems to work: image image