app icon indicating copy to clipboard operation
app copied to clipboard

Match runs for BDD scenario examples with parameter in title

Open promahos opened this issue 11 months ago • 1 comments

Is your feature request related to a problem? Please describe. I have a Playwright BDD framework, where I use parametrised scenario, naming them as described: https://vitalets.github.io/playwright-bdd/#/writing-features/customize-examples-title?id=_1-use-scenario-name-as-a-template

For example:

Scenario Outline: Add attribute value of <type> type
        Examples:
            | type            | 
            | text            | 
            | int             | 

Scenario is being imported to Testomat as one test case with name "Add attribute value of type". Corresponding runs have titles: Add attribute value of type ⇒ Add attribute value of text type Add attribute value of type ⇒ Add attribute value of int type and are not matched to any test case

Describe the solution you'd like To match run with name 'Add attribute value of type ⇒ Add attribute value of text type' to test case 'Add attribute value of type' automatically (in run reports, emails notifications etc).

Describe alternatives you've considered Any other way to keep possibility to use examples and to have relevant naming for test runs

Additional context

Image Image Image

promahos avatar Jan 23 '25 10:01 promahos

I think this is antipattern Not planned for nearest releases

DavertMik avatar Oct 23 '25 14:10 DavertMik