Xporter templates for JIRA cloud with XRay

Cullen Northway
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
July 3, 2019

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

2 answers

1 accepted

0 votes
Answer accepted
Inês Silva
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
July 4, 2019

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

0 votes
Andrei Loutchouk July 5, 2019

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]

Suggest an answer

Log in or Sign up to answer