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

Gitlab-ci .yaml configuration for posting Postman tests via Jira Xray API

My .gitlab-ci.yaml file v stages: - test postman_tests: stage: test image: name: postman/newman_alpine33 entrypoint: [""] script: - newman --version - npm install -g newman-reporter-junitfull …
kr.isss
  • 3
  • 2
0
votes
1 answer

Importing Testim Junit xml to Xray failed with message Error creating issues in Jira

I'm trying to import JUnit XML generated through Testim with Jenkins and received following error. Starting XRAY: Results Import Task... ########################################################## #### Xray is importing the execution results …
Nipuna Madusanka
  • 194
  • 2
  • 11
0
votes
0 answers

Can not import cucumber feature files to JIRA XRAY board using the Jenkins Plugin

I am using Xray - Test Management for Jira Plugin. With the help of this plugin currently I was able to imoprt the test execution results to JIRA using the step([$class: 'XrayImportBuilder']) But I am unable to import the cucumber features to JIRA…
0
votes
1 answer

Use Custom Test Case Designer for Better visibility of the test cases

We are using Xray as a Jira Plugin and previously we have written automated test case in a separate project. We are using Testng for Test case automation. After integration of Jira with Xray Plugin, we have migrated existing test cases from Testng…
Shirsh Sinha
  • 156
  • 2
  • 8
0
votes
1 answer

Xray importToSameExecution not working for Cypress Cucumber JSON in Jenkins Pipeline

I'm trying to import Cypress Cucumber JSON results into same Xray execution using "Xray - Test Management for Jira Plugin" in Jenkins pipeline. But in each run Xray is creating a new execution. Jenkins Pipeline stage('Upload xray test results') { …
0
votes
2 answers

How can I update my Kanban board's filter to ignore closed XRAY Test issues?

I have a Kanban board and I see all XRAY Test issues in Open issues navigator even though they are closed. The Open issues are using a filter to pick issues where Resolution is unresolved and all XRAY issues has Resolution as UnResolved as the…
Anisha R
  • 1
  • 1
0
votes
1 answer

Jira/xRay - Embedded element in JSON-Report has the wrong name in Jira

We are running Cucumber Tests and upload the results into Jira using the xRay Plugin. The uploaded report is a cucumber json report. Sometimes we attach files to the cucumber scenario and therefor to the report using: scenario.attach(logText,…
Tobi
  • 3
  • 3
0
votes
1 answer

XRay REST API Feature File Import Fails Parsing

Version of Xray 6.5.0 Feature File Being Imported - Simplified Version Feature: Something Something CC AllProducts Scenario: Something With Three Products Given billing something is xyz When I make a something something transaction …
Guy
  • 666
  • 1
  • 10
  • 34
0
votes
0 answers

XrayImportFeatureBuilder Jenkins integration makes empty .zip after finding feature files

I have XRAY integrated with Jenkins and our Jira instance following the documentation here I have no issues with XrayImportBuilder to import execution results or XrayExportBuilder to export scenarios from JIRA to run on jenkins. When i use…
squeemish
  • 147
  • 5
  • 14
0
votes
0 answers

Backbone JS error on Kanban boards with XRay Jira plugin installed

While evaluating upgraded Jira Server instance (from 7.10 to 9.6) while using Kanban board the following Javascript error occurs which was not present in the 7.10 version: Details Exception: Uncaught Error: raven/autocomplete/model missing…
Szilank
  • 26
  • 2
0
votes
1 answer

Cucumber report attachment - json format - XRay Jira API

I am currently implementing integration of Cucumber/Jira/Xray. I am using json formatter plugin from cucumber to generate test report and xray maven plugin to import test result in Jira/Xray. See code below: @ConfigurationParameter( key =…
Obaid Maroof
  • 1,523
  • 2
  • 19
  • 40
0
votes
1 answer

Jira Xray empty Results on Test Details with Behave when import REST execution with Cubumber test type

I'm trying to use Import Execution Results - REST to import Behave JSON results with Multipart. I can get the import to work, but the "The execution details displays the result of the Cucumber Scenario." does not work. Here's what I'm doing: I'm…
petu
  • 13
  • 1
  • 3
0
votes
2 answers

How to make a GET (REST API) from xray Jira Cloud with Postman

My organization has a Jira Cloud Xray environment, I want to get test steps of a particular Test issue (or many) in Postman. I managed to authenticate performing a POST request with Bearer token Auth that links to the body of request with 2 codes:…
Harper
  • 1
  • 1
0
votes
1 answer

Xray JSON results Automate execution with CI CD github pipeline Flutter Dart

I have written some test cases and i wanted to execute this test result to Jira/Xray. I didnt find any dart plugin for make json and import that result with xray api within github workflow. Is there are any dart plugin or way we can achieve…
shilpa vania
  • 11
  • 1
  • 3
0
votes
1 answer

Attach Jira IDs in JUnit 5 parameterized tests (possibly using Zebrunner)

I have the following code snippet in Java (run the project with Java 8 and apache-maven-3.6.3) @ParameterizedTest @ValueSource(strings = {"true"}) public void P34AMA_2837(String expected_result) throws Throwable { Xray.setTestKey("P34AMA-2818");…