Questions tagged [jira-zephyr]

JIRA and Zephyr integration is available via connectors

zephyr is a testcase management application and also 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.

98 questions
0
votes
1 answer

How to get all the Test Executed from Zephyr JIRA API for Multiple Cycle IDs in One Shot

Is there any way to get all the test case executed details from the multiple test cycles at a time Currently i have some 3 Cycle IDs but I am making 3 GET API calls to get from each cycle https://
Mahesh G
  • 1,226
  • 4
  • 30
  • 57
0
votes
2 answers

Headers required for ZAPI API Calls

I am new to Zapi(Zephyr API). Question 1: I am one of Jira user in my project. Jira admin has installed ZAPI(trial version). Now as a regular user will i able to access ZAPI API's with user ID and credentials Question 2: I am trying to evaluate…
nurav
  • 269
  • 2
  • 6
  • 19
0
votes
1 answer

jobProgressToken: Jira (Zephyr) Rest API

I am using Jira (Zephyr) rest calls to create Test Cycle and add Tests cases into it. According to information mentioned here1 if I use this rest call to add tests to Cycle then as a response I will get JobProgressToken. JobProgressToken is nothing…
Akash
  • 1
  • 1
  • 4
0
votes
2 answers

Zephyr for JIRA options

Is there any option in zephyr for JIRA to mark the test as automated. I am new to JIRA and we use Zephyr for Test case management. I am writing test cases for the web based application wanted to keep track of manual and automated test cases…
0
votes
2 answers

How to get All test cycle from ZAPI rest call

I am trying to use this API to manage my automation test cases in Jira-Zephyr. I am trying to get all the test cycle from my project, So as per the ZAPI technical doc I…
joy87
  • 25
  • 4
0
votes
1 answer

Testcases are not getting publish on JIRA while using Zephyr with jenkins although zapi installed with JIRA - specific for Cucumber framework

Already done with below mentioned steps https://wiki.jenkins-ci.org/display/JENKINS/Zephyr+For+Jira+Test+Management+Plugin Testcases are not getting publish on JIRA while using Zephyr with jenkins although zapi installed with JIRA - specific for…
0
votes
1 answer

How to generate a query that retrieves the count of test cases in a test cycle?

We have number of test cycles which contain many test cases each.I need to get the exact count of test cases in a particular test cycle . i have the following query : curl -v -u username:password -H "Content-Type: application/json" -X GET ALL…
0
votes
1 answer

Zephyr for Jira Importer (zfj-importer) Connection denied

In my company we already use JIRA and plan to use Zephyr for JIRA for our Testmanagement. In order to test the AddOn I created a JIRA-Cloud test-account. Now I want to import some test-cases using the zfj-importer When trying to connect with the…
Enzo Volkmann
  • 369
  • 6
  • 14
0
votes
1 answer

Is it possible to use Zephyr for JIRA only for selected Project?

I would like to use Zephyr for JIRA in my project. I was wondeing if it is possible to use only for selected project? and not for all. And which version to use? Thanks
Pooja
  • 2,162
  • 5
  • 33
  • 64
0
votes
1 answer

Zephyr: where is comments field visible?

I'm stumped - In Jira or any Zephyr report, where does one see the value that was added to comments? ie: Here's my request, I've added "Comment":"test 999", and can see it in the response, but can't find it in any existing report? URL:…
Greg
  • 3,861
  • 3
  • 23
  • 58
0
votes
1 answer

Bamboo stuck at validating Jira server

Im trying to configure Zephyr Add-on - "Zephyr for JIRA Test Management Add-on for Bamboo" as a build task in Bamboo, but it stuck at validating the Jira server. The link between Bamboo and Jira is defined, the value of api calls in jira setting is…
poli
  • 1
  • 1
0
votes
1 answer

In Zephyr for JIRA testdetails history I do not see the addition of test steps. Only updates and deletions. How can I find the additions

In Zephyr for JIRA testdetails history section I do not see the addition of test steps. Only updates and deletions. How can I find the additions?
smeepaga
  • 1
  • 2
0
votes
2 answers

How to use a Zephyr rest call to find the time when the teststeps were updated?

We have testcases stored in Zephyr for Jira. When we update teststeps, the updated date on Jira issues does not get updated. I assume tath information is saved on Zephyr. I need to find all the testcases whose steps have been modified since a…
smeepaga
  • 1
  • 2
0
votes
0 answers

Integrate Selenium, Maven, TestNG, Zephyr with JIRA to update test cases

I have to execute pom.xml using Jenkins and have to update test cases on Zephyr with JIRA. I have installed zephyr with JIRA management plugin in Jenkins and have added post build action to push the result to Zephyr with JIRA. Can anyone please…
Abhinav
  • 1,037
  • 6
  • 20
  • 43
0
votes
1 answer

how to create a cycle in zephyr using zephyr rest api?

I am trying create a "cycle" in the zephyr using the zephyr java rest API.I have written the following client code to create cycle. String auth = new String(Base64.encode("test.manager:test.manager")); Client client1 = Client.create(); …