I'm using a template that extracts the following data from Test Runs and Test Executions.
Test Data | Test Run Data | Test Execution Data | |||||||||||
Test Key | Test Summary | Priority | Assignee | Planned Start Date | Planned End Date | Executed By | Status | Started At | Finished At | Elapsed Time | Test Plan | Test Execution | Version |
&{for issues} | |||||||||||||
#{for testruns|sortby=Rank} | |||||||||||||
${TestRuns[n].Key} | ${TestRuns[n].Summary} | ${TestRuns[n].Priority} | ${TestRuns[n].AssigneeId} | ${dateformat("dd/MM/yyyy"):TestRuns[n].Planned Start Date} | ${dateformat("dd/MM/yyyy"):TestRuns[n].Planned End Date} | ${TestRuns[n].Executed By} | ${TestRuns[n].Execution Status} | ${dateformat("dd/MM/yyyy HH:mm"):TestRuns[n].Started On} | ${dateformat("dd/MM/yyyy HH:mm"):TestRuns[n].Finished On} | ${Test Plan} | ${link:title=${Key},href=${BaseURL}/browse/${Key}} | ${FixVersionsList} | |
#{end} | |||||||||||||
&{end} | |||||||||||||
I absolutely need to also extract data from the linked Tests Plans, at least Test Plans Summary, and ideally also some other fields.
I can't find a way to do it. If I just add a column with Test Plan Summary data ${TestPlans[n].Summary}, it returns empty boxes.
I tried to read the documentation at https://docs.getxray.app/display/XRAYCLOUD/Document+Generator, but it's too technical and I can not find what I need.
Could you help me please ?
Thank you so much !