serenity-reportportal-integration icon indicating copy to clipboard operation
serenity-reportportal-integration copied to clipboard

Scenario outlines do not support dynamic parameters in the scenario name

Open voleksa opened this issue 6 months ago • 1 comments

Cucumber supports dynamic parameters in the scenario name

Scenario Outline: Test scenario with dynamic names <action>
    Given I open the app
    When I do something <action>
    Then I assert that <action> is <assert>

    Examples:
      | action | assert |
      | test   | true   |
      | sleep  | false  |
      | eat    | true   |

But in the RP such parameters in the scenario name will not be replaced with actual values image There was a similar issue in the cucumber agent https://github.com/reportportal/agent-java-cucumber6/issues/20

voleksa avatar Aug 21 '24 11:08 voleksa