Hi,
I have previously used Xporter on JIRA server but have moved onto a project using JIRA Cloud and XRay. I would like to be able to download a template for exporting XRay test scripts into Excel but there doesn't appear to be any templates whatsoever for JIRA cloud on the Xporter Templates portal. Does anyone know if such a template exists for JIRA cloud? The XRay doco highly recommends using Xporter instead of (now most defunct) JIRA export tools thus would expect there to be some cloud-compatible templates out there.
Many thanks
Cullen
Hi Cullen,
Yes, we do have Xporter for Cloud too but unfortunately we are still working on its integration with Xray Cloud and don't have it functioning at the moment. We plan to have it on a future release which scheduled to be made available by the end of the July.
Best regards,
Xporter & Xray Teams
Cullen,
I've found the API more useful that any plugins I could try.
With some python, you can get test steps:
r = requests.post(graphql_api, headers={"Authorization": "Bearer " + jwt}, json={"query": query}) if r.status_code == 200: report_json = r.json()
test_step = report_json["data"]["getTestPlan"]["testExecutions"]["results"][index_test_exec]["testRuns"]["results"][index_test]["steps"][index_step]
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.