Hello,
is it possible to add multiple scenarios to a single testcase in xRay?
As you can see in my example image below, it looks like i have to create a test-case for every scenario. But i would like to have one test-case and they should have multiple scenarios. Is this possible somehow?
I am also facing this same problem. @Johan Gründer have u found any solution to this issue? If yes, pls update here. Thanks in advance.
Hey, it sadly doesnt work. For every single scenario you will need its own test (which is a pretty bad solution imo)
However if you have the same test with different values you can iterate through the same test with different values using the scenario outline, which would look like this:
Given Open url
When Click on show more button "<button>"
Then Additional text is shown
Examples:
|button|
|#btn-id1|
|#btn-id2|
etc.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.