Questions tagged [jira-xray]

xray is a testcase management application which supports integration with JIRA.

xray is a testcase management application which supports integration with JIRA, one of the leading defect tracking tools. The integration helps you link your defects with the test cases and improves the trace-ability.

184 questions
0
votes
1 answer

Postman-Jenkins-Jira Integration

I have a postman collection which in turn is integrated to Jenkins via newman. I need to integrate my Jenkin results with Jira via X-ray plugin. I tried using newman junitxray reporter but this report consider each request as test case. In my…
0
votes
1 answer

Locating defects from Jira Xray using Graphql

I am trying to use Graphql to export test cases and their execution results for any test case in a specific Test Plan. I was able to write the Graphql script to get all the details from the test execution I need, but the one problem is that the…
Robert
  • 183
  • 2
  • 13
0
votes
2 answers

How to manage the same test case associated to 2 different issues on Jira XRAY

I wonder if we have a way to distinguish between the result of tests that cover 2 different use cases.  to illustrate my question: Issue #1 - AAA Issue #2 - BBB Test Case #3- Can Cover both Issue#1 and Issue #2, but Issue#1 test result is passed and…
Shimi
  • 3
  • 1
0
votes
0 answers

JIRA Xray Cloud - Import Execution Results using REST API

Hi I am using JIRA Cloud and trying to import execution result using REST API. End Point URL - https://xray.cloud.getxray.app/api/v1/import/execution Request Type - POST Content-Type - application/json Authorization: Bearer "" Body - { "info" :…
0
votes
1 answer

Erros custom field importin Junit XML with Xray and Jira

When I try to import my XML from Junit I get the following error {"error":"Error creating issues in Jira! - Field Customer is required., Field Travelio: Dimension is required."} I know that this is beacue Xray is trying to create issues for the test…
0
votes
1 answer

Getting 404 for authentication API for Xray JIRA Cloud

I am using JRIA cloud and trying to authenticate by using below API API Endpoint https://.atlassian.net/api/v1/authenticate Header Content-Type : application/json POST Body { "client_id": "","client_secret": "" } Getting…
0
votes
1 answer

Custom field for test plan in jira xray

I'm tring to import results to jira Xray using Rest API cucumber/mutipart with the following curl command : curl -H "Authorization: Bearer $token" -F info=@Exec.json -F result=@file.json …
DevTest
  • 13
  • 2
0
votes
1 answer

Xray Cloud test execution status

Is there a way to obtain the status of every test (passed or failed) of a test execution using API REST in Xray Cloud? I have a Jira Cloud with Xray where I import a Junit XML and I want to be able to get a file with the status of the test imported
0
votes
1 answer

Is there a way to generate cypress report excluding failed test cases?

I hope all of you are doing good. As, the question states currently I am looking for a way to exclude failed test cases from Cypress xml report. I am using Junit as a reporter. The reason behind this is I am importing test results to Jira and…
Hamza
  • 165
  • 1
  • 1
  • 11
0
votes
1 answer

Idera Inc. Xray (Jira Xray) and Slack Integration

How do I integrate slack notifications from Xray? And can I do it at all? Maybe using webhooks. Red the documentation and didn't find the answer. Thank you!
0
votes
0 answers

Test results fail to upload from Jenkins to X- Ray

My team is uploading cypress test results from Jenkins to X-Ray. The upload is successful with some test cases, but other results fail to upload with the following error. ERROR: Unable to confirm Result of the upload..... Upload Failed! Status:503…
0
votes
1 answer

Fetching Test Executions status with REST API

I am fetching test and their status attached to test execution using API. Below is the command for same: curl -u username:password -X GET -H "Content-Type:application/json" --url ""https://server/rest/api/2/testexec/TEST-1161"" I am facing below…
0
votes
1 answer

How do we integrate the test evidences with X-Ray Jira via API's?

I want to upload the test evidences of an automation tests to the X-Ray Jira through API. I need what API and Endpoint is being consumed to upload the test execution evidences to X-Ray Jira.
0
votes
0 answers

Error while importing xray json format result using XRAY Cloud API {"error":"Test with key XX-XX not found."}

I am getting error {"error":"Test with key XX-XX not found."}, while uploading xray format json test result using xray cloud APICall XRAY Cloud End point: https://xray.cloud.getxray.app/api/v2/import/execution?testExecKey=DMY-71. Xray formatted…
0
votes
1 answer

How to trigger a Jenkins build from XRay jira?

I am trying to trigger a build in Jenkins directly from Xray. I have been successfully able to create a trigger in jira and has provided the webhook url and other information needed to run the build. But on triggering the build from any Test Plan, I…