Serenity report doesn't show scenario details with Scenario Outline

268 Views Asked by At

I have created a cucumber scenario:

Scenario Outline: The one where we fetch classifications for a list of part numbers in batch from CCS
        Given the parts with classifications from CCS for plant XX
        When we lookup classifications for "KIC-OCS" plant IN/IT and classification region and type DE/IMPORT for effective date 06/23/2023 with derivations <derivationsEnabled> and the parts
       Then the classifications for the parts should be found  
         | Part Exists         |
         | <partExist>|
       Examples:
         | derivationsEnabled | partExist|
         | enabled            | true     |
         | disabled           | false    |

When I run it, it executes the scenario with both datasets and then in the generated serenity report it also shows two scenarios, but by clicking on the scenario to see the details (steps) I get to a dead link (file not found)

Am I missing something in the configuration?

Versions in gradle (7.4.2):

Plugin: id 'net.serenity-bdd.serenity-gradle-plugin' version '2.4.34'

cucumberVersion = '7.12.1' serenityVersion = '3.9.7'

The current view of the report: Before clicking to the scenario

1

There are 1 best solutions below

1
Tamas On

If you click on the test, there will be 2 scenarios.