While exporting the cucumber file (feature) from Xray Test Execution I recently notice that the feature name is missing (it should be imported from test/task name?)
> @XYZ-1234 Feature:
>
> #description @XYZ-1234 @XYZ-1234 @XYZ-1234 @Tag_name
> Scenario: Lorem ipsum dolor sit amet
> Given Consectetur adipiscing elit
> Then Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua
Is there any possibility to add a feature name in Xray?
When you generate a JSON report via wdio-cucumberjs-json-reporter package then JSON doesn't have a name, just ".json", when I add a feature name like shown below it works fine but the features will be exported via CI/CD so I need to point out the right JSON with the correct name.
> @XYZ-1234 Feature: Added title manually
>
> #description @XYZ-1234 @XYZ-1234 @XYZ-1234 @Tag_name
> Scenario: Lorem ipsum dolor sit amet
> Given Consectetur adipiscing elit
> Then Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua
Is there any solution to resolve that case? Thanks in advance.