You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
I 'm trying to build a template for people to use to print out test procedures and I need to use Test Step Custom fields for this template. I can't seem to export the custom fields under test steps using template instructions and Xporter plugin. I am able to get the Jira defined fields to print out.
example:
Actual Results: ${wiki:TestRuns[n].TestSteps[r].ActualResult}
Hi @Teri Amador
Please check our documentation (https://confluence.xpand-it.com/display/public/XPORTER/Xray+Test+Management+for+Jira#XrayTestManagementforJira-IteratingManualTestStepdetailsassociatedwithaTestRun) if you additional details.
In the case of the Actual Results you to use this (with a space between the two words):
${wiki:TestRuns[n].TestSteps[r].Actual Result}
If you additional help, please contact the Xporter Support (http://xportersupport.xpand-it.com) so that we can request additional information and help further.
Kind regards,
Rogério Paiva [Xporter Support Team]
copying straight out of the documentation doesn't seem to work, is there a necessary customization?
For example, I'm using the following block, copied straight out of the example sample code:
2.1 Test Runs
#Total of Test Runs
Test Runs Count: ${TestRunsCount}
#{for testruns}
Execution Status: ${TestRuns[n].Execution Status}
AssigneeID: ${AssigneeId}
Rank: ${TestRuns[n].Rank}
Executed By: ${TestRuns[n].Executed By}
Started On: ${TestRuns[n].Started On}
Finished On: ${TestRuns[n].Finished On}
Comment: ${wiki:TestRuns[n].Comment}
Execution Defects Count: ${TestRuns[n].ExecutionDefectsCount}
TestSteps Defects Count: ${TestRuns[n].TestStepsDefectsCount}
Evidences Count: ${TestRuns[n].ExecutionEvidencesCount}
#{end}
#{for Tests}
@{title=${Tests[n].Key}|href=${BaseURL}/browse/${Tests[n].Key}} – ${Tests[n].Summary}
Test Description:
${wiki:Tests[n].Description}
When I export using Test Plan using this template I get 0 for count, and no test runs. Also tried proper capitalization "TestRuns" with no results.
"for Tests" works, and I get all the tests in the test plan.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
this works for me.
#{for testruns}
Number of Steps: ${TestRuns[n].TestStepsCount}
#{for r=TestRuns[n].TestStepsCount}
Step Number: ${TestRuns[n].TestSteps[r].StepNumber}
Operator Actions: ${TestRuns[n].TestSteps[r].Step}
Expected Results: ${wiki:TestRuns[n].TestSteps[r].ExpectedResult}
Actual Results: ${wiki:TestRuns[n].TestSteps[r].Data}
Comment: ${wiki:TestRuns[n].TestSteps[r].Comment}
#{end}
#{end}
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.
for now I don't . I don't need to export out anything else. I'm still in the beginning stages of building the template.
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.