I need to export the test results (context, Error Message, Duration and Status) per test step from an automated (generic) test into a word template. Is there a way to access this information? I can only access the test details per step in a manual test.
Hi Philipp,
No, this is not possible, because in the Xray context a Generic Test is an automated agnostic Test and the only Field that is related to a Generic Test is its Definition. The Xray application only supports steps when we are using Manual Tests.
You can see more information here https://confluence.xpand-it.com/display/XRAY/Test
Best regards,
Xray Team
Hi there,
i am trying to do a bulk export for the failed Test steps within a Test Plan or Scenario.
In order to see when a test failed, at which step and why?
Is this possible?
Thanks
Zu
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I guess you could try using the JQL filter to only get the failed tests. Something like this:
#{for a=JQLIssuesCount|clause=project=YOUR PROJECT and issuetype = "Test" and TestRunStatus = "${Key}-FAIL"}
#{for r=JQLIssues[a].TestStepsCount}
StepNumber: ${JQLIssues[a].TestSteps[r].StepNumber}
Step: ${JQLIssues[a].TestSteps[r].Step}
Step Status: ${JQLIssues[a].TestSteps[r].Status}
#{end}
#{end}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Phillip ,
I am trying to use your query that you suggested above. It is giving me an error that -
The character '#' is a reserved JQL character. You must enclose it in a string or use the escape '\u0023' instead. (line 1, character 1)
Do you know how to resolve this error.
Thanks in advance.
Manny
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Was this feature implemented on latest versions?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.