Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Is it possible to add fields to the Zephyr "Test Execution" screen?

Viewing page 2 of 3

53 answers

1 accepted

1 vote
David Buonomano February 5, 2014

I'd also like to add my vote to this request. Ideally I'd like the same abilities as the existing JIRA search issues page, to be able to add any field (system or custom) as a column and order them through a similar UI.

Joseph Van Der Wee February 5, 2014

I agree, searchable custom Test Execution fields would be awesome.

1 vote
Vasu Belide
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!
February 5, 2014

I would vote for this feature as well.

Even the build number in the Test Exection screen

1 vote
Alejandro Marcos November 19, 2013

Sarma, we add a custom field "Pre-condition" and we use it in every test case but we can t see it when we execute them, that s why we ask to see it on execution

1 vote
Sarma Josyula
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!
November 19, 2013
We also need the feature to add pre-conditions to the test case creation. Like always we need it ASAP. Is there a short term workaround to achieve this? Thanks
Chris Miller
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.
November 21, 2013

Sarma,

Zephyr Testcases are just like any other issue type in JIRA. So make a request to your JIRA admin to add a "Precondition" JIRA custom field to the Zephyr Testcase Issue Type create screen.

Kind Regards,

Chris

1 vote
Thomas Krawczyk November 17, 2013

How about being able to assign a person to an Execution? You can use Assignee in the Jira issue but this covers the whole Test not the specific Execution.

Jessica Sullivan
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.
November 17, 2014

This would be a great feature that we could use as well.

PoojaK December 14, 2015

Hi , @Thomas Krawczyk : This feature is now available in zephyr for jira 3.0 . Please download the same from https://marketplace.atlassian.com/plugins/com.thed.zephyr.je/versions and let me know if you still have any issues Kind Regards Pooja

1 vote
Alejandro Marcos November 17, 2013

I'd like this feature too, we have a pre-conditions field on test case creation and we'd need it on execution screen, Make sense?

Thanks

1 vote
Tim Smith
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!
November 7, 2013

I'd like this as well.

1 vote
Julien Pellier
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!
October 28, 2013

I agree too. Precondition and Postcondition are important.

1 vote
Liliia October 15, 2013

I vote too! Preconditions is essential part of test cases. Please, add it to feature request.

1 vote
Tim Nicolson
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!
October 14, 2013

I need this feature too.

1 vote
Christopher
Contributor
October 7, 2013

I vote for that new feature.

0 votes
Majo
Contributor
October 28, 2020

Hi All,

PFB a JavaScript code I have written, which can display JIRA fields in Zephyr Execution Screen as shown here. You may modify the custom_field_ids and use it as a Temporary solution.

 

Meanwhile please vote for the actual feature at :

https://trello.com/c/fIQm7Okq/131-display-jira-native-custom-fields-in-test-execution-page

Untitled.png



AJS.$(document).ready(function(){
if (AJS.$(".execute-test-header-left a").length != 0) //Execute only on Test Execution Screen{ getIssueDetailsFunction();

quality_dimension = "customfield_11135"; test_case_id = "customfield_11151";}});

function  getIssueDetailsFunction(){

issueLink = AJS.$(".execute-test-header-left a").attr("href") // Eg : "/browse/ETFQAMDB-36655"

if (issueLink !=  null) { window.issueKey = issueLink.substr(issueLink.lastIndexOf("/") + 1); //console.log("============= Defect Key = " + issueKey + "===========");
if (issueKey != null)  Issuedetails = getIssueDetails(issueKey);

displayJiraCustomFields();}}


function getIssueDetails(issueKey){

var details; AJS.$.ajax({ url: contextPath +  "/rest/api/2/issue/" + issueKey, type: 'get', dataType: 'json', async: false, success: function(data) { details = data; } });   return details;}


// Displays JIRA Custom Fields in Zephyr Execution Screen. function displayJiraCustomFields() {

if ( AJS.$(".myNewClass").length == 0 ) {
CustomDisplayText = ''; test_case_id_val = ''; quality_dimension_val = '';

if ( Issuedetails.fields[test_case_id] != null ) { // Test Case ID

test_case_id_val = Issuedetails.fields[test_case_id] ;  }

if ( Issuedetails.fields[quality_dimension] != null ) { // Quality Dimension

quality_dimension_val = Issuedetails.fields[quality_dimension].value ;  }

if ( test_case_id_val != '' || quality_dimension_val != '' ) {

var descriptionDiv = AJS.$(".aui-item.execution-right-side-container").find(".module.toggle-wrap:eq(1)");

var clonedSection = descriptionDiv.clone();

clonedSection.addClass("myNewClass");

clonedSection.insertBefore( AJS.$(".module.toggle-wrap.date-time") );
AJS.$(".myNewClass .mod-header .toggle-title").text("JIRA Custom Fields");

if(test_case_id_val != '' )

{ CustomDisplayText = CustomDisplayText.concat("Test Case ID : " + test_case_id_val) }

if( CustomDisplayText != '') CustomDisplayText = CustomDisplayText.concat("</br>");
if(quality_dimension_val != '' )

{ CustomDisplayText = CustomDisplayText.concat("Quality Dimension : " + quality_dimension_val) }
if( CustomDisplayText != '') CustomDisplayText = CustomDisplayText.concat("</br>");
AJS.$(".myNewClass .mod-content #comment-val").html(CustomDisplayText); AJS.$(".myNewClass .mod-content #comment-val").css("line-height","1.23") }

} }

Diego Menendez
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!
December 31, 2020

How can i use this script? tried tampermonkey but it sais is invalid
Thanks!

majofrancis December 31, 2020

Hi Diego,

I assume the problem the problem would be with the usage of 'AJS.$'. Its supported in JIRA webpage whereas normal jquery (in Tampermonkey) uses '$'  

Its best to experiment with the script in web browser developer console of of your JIRA application. 

0 votes
Majo
Contributor
October 28, 2020

Hi All,

PFB a JavaScript code I have written, which can display JIRA fields in Zephyr Execution Screen as shown here. You may modify the custom_field_ids and use it as a Temporary solution.

 

Meanwhile please vote for the actual feature at :

https://trello.com/c/fIQm7Okq/131-display-jira-native-custom-fields-in-test-execution-page

Untitled.png



AJS.$(document).ready(function(){
if (AJS.$(".execute-test-header-left a").length != 0) //Execute only on Test Execution Screen{ getIssueDetailsFunction();

quality_dimension = "customfield_11135"; test_case_id = "customfield_11151";}});

function  getIssueDetailsFunction(){

issueLink = AJS.$(".execute-test-header-left a").attr("href") // Eg : "/browse/ETFQAMDB-36655"

if (issueLink !=  null) { window.issueKey = issueLink.substr(issueLink.lastIndexOf("/") + 1); //console.log("============= Defect Key = " + issueKey + "===========");
if (issueKey != null)  Issuedetails = getIssueDetails(issueKey);

displayJiraCustomFields();}}


function getIssueDetails(issueKey){

var details; AJS.$.ajax({ url: contextPath +  "/rest/api/2/issue/" + issueKey, type: 'get', dataType: 'json', async: false, success: function(data) { details = data; } });   return details;}


// Displays JIRA Custom Fields in Zephyr Execution Screen. function displayJiraCustomFields() {

if ( AJS.$(".myNewClass").length == 0 ) {
CustomDisplayText = ''; test_case_id_val = ''; quality_dimension_val = '';

if ( Issuedetails.fields[test_case_id] != null ) { // Test Case ID

test_case_id_val = Issuedetails.fields[test_case_id] ;  }

if ( Issuedetails.fields[quality_dimension] != null ) { // Quality Dimension

quality_dimension_val = Issuedetails.fields[quality_dimension].value ;  }

if ( test_case_id_val != '' || quality_dimension_val != '' ) {

var descriptionDiv = AJS.$(".aui-item.execution-right-side-container").find(".module.toggle-wrap:eq(1)");

var clonedSection = descriptionDiv.clone();

clonedSection.addClass("myNewClass");

clonedSection.insertBefore( AJS.$(".module.toggle-wrap.date-time") );
AJS.$(".myNewClass .mod-header .toggle-title").text("JIRA Custom Fields");

if(test_case_id_val != '' )

{ CustomDisplayText = CustomDisplayText.concat("Test Case ID : " + test_case_id_val) }

if( CustomDisplayText != '') CustomDisplayText = CustomDisplayText.concat("</br>");
if(quality_dimension_val != '' )

{ CustomDisplayText = CustomDisplayText.concat("Quality Dimension : " + quality_dimension_val) }
if( CustomDisplayText != '') CustomDisplayText = CustomDisplayText.concat("</br>");
AJS.$(".myNewClass .mod-content #comment-val").html(CustomDisplayText); AJS.$(".myNewClass .mod-content #comment-val").css("line-height","1.23") }

} }

0 votes
Majo
Contributor
September 16, 2020

Hi All,

There is no point in submitting your votes here.

SmartBear has a Trello board where they list Feature Requests and allow users to Vote for features.

 

https://trello.com/c/fIQm7Okq/131-display-jira-native-custom-fields-in-test-execution-page

 

Please Vote over there...

0 votes
Suhas P June 17, 2020

Any update on this important feature?

Jayesh Wankhade
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.
June 17, 2020

What you are looking for?

Suhas P June 21, 2020

Hi Jayesh,

I am looking for Jira custom field to be available as a field in Zephyr test execution window and ability to select that column in List view, when i select a cycle. As we have one of the JIRA custom field as a unique identifier and that field is needed during the test execution.

 

Thanks,

Suhas

PS: we are using Zephyr for JIRA server.

Adrian.Cabusas
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!
October 28, 2020

Hi @Suhas P did you find away to solve your problem?
I have a similar if not exact same issue.

Thanks
Adrian

0 votes
Domenico Torre March 25, 2019

I have putted in the filed description the "panel" and i have inserted in the panel:title= "Start condition" and the condition in the field "no forther formatting is done here"

0 votes
Jayesh Wankhade
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.
March 12, 2019

Yeah you can add custom field in Zephyr as well but you should have Administrator rights to add that. You can ask JIRA Administrator add the field for you

1. You will find the option in JIRA settings --> Zephyr custom fields. 

Once you added the custom field, you can enable it in your project.

2. Select the project, goto project settings --> Zephyr custom field --> Enable it.

Please refer screen shots as well.

Add Zypher custom field.PNGEnable custom zypher field.PNG

Jayesh Wankhade
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.
June 22, 2020

@Suhas P Check this out if this will helpful.

Suhas P June 22, 2020

@Jayesh Wankhade , Thanks for your prompt response.Yes, we can include the zephyr custom fields. But i don't see an option to sync the JIRA custom field value to the Zephyr custom field. 

 

Thanks,

Suhas

Jayesh Wankhade
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.
June 25, 2020

Let me know if you want to discuss this personally we can together solve it.

Suhas P June 25, 2020
Jayesh Wankhade
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.
June 25, 2020

Please just send an email to me on jayeshwankhade13@gmail.com

Adrian.Cabusas
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!
October 28, 2020

Hi I am looking to do the same.

I have an "acceptance criteria" - free text field in the TEST issue type, which was a field created in JIRA.
I want this "acceptance criteria" field to be able to be seen on the test execution screen in Zephyr.

Is there a process to map or link so the data from the free text field appear in the test execution screen?

Jayesh Wankhade
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.
October 28, 2020

Hi @Adrian.Cabusas 

You can add custom filed and also use the same while execution as well. You can see above how to add custom fields. Check the below screenshots to check how it will show while execution.

Please let me know if you still have any issues.t1.PNGt2.PNG

0 votes
Jayesh Wankhade
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.
March 12, 2019

Yeah we need to have precondition as a custom filed for every test step like we have currently Test Data filed.

Jayesh Wankhade
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.
March 12, 2019

I got the success to add the custom step. Please see my other comments as well. 

0 votes
Thuy Thanh
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 24, 2018

I really need Precondition field is a part of test case, too. And "build version" is additional. 

Please provide. So many people need it.

0 votes
Arun_Thundyill_Saseendran
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.
March 6, 2018

@Cormac Flood, I understand the frustration and I am equally frustrated since we are not able to make an important production move because of the lag of this feature. 

I even raised a support request with Zephyr and this was their response.

Hi Arun,

I have raised a Feature Request on your behalf with ID FR-60  please keep this for your reference.
Our Product Management team has been made aware of this feature request. They will review the same for consideration. We appreciate your valuable feedback in making Zephyr for Jira better.


Please note all Feature request  can only be tracked internally. Other user do not have access to the internal FR URL. 

Seemingly, a few of the admins I know are evaluating the Test Management for JIRA from Adaptavist (The Makers of Script Runner) and the results are pretty positive. You can know more about it here.

Further, @Nic Brough -Adaptavist- or anyone from Adaptavist team would be able to answer your specific queries. They are quite active in the community too.

Cormac Flood
Contributor
March 7, 2018

Thank you so much for the update Arun! I wish Zephyr replied as quickly or as informatively :-)

I will follow your advice.

All the best,

Cormac

Arun_Thundyill_Saseendran
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.
March 7, 2018

@Cormac Flood thanks.  Will keep you updated on the status in the same thread.

If you think the answer would help others too, please mark this answer as accepted.

0 votes
Rajesh Gupta January 18, 2018

Its 4+ years now since the request was first raised. any updates here ?

Cymotive Devops January 21, 2018

Just a loud ignorance...

Is Zephyr the new HP(MicroFocus) QC?

0 votes
Simon Madsen
Contributor
December 20, 2017

Having the ability to add custom fields to the test execution, is a must. We work will a multi-component setup where each piece of hardware/software has a version/build number. Capturing those in separate fields so they are searchable in JIRA, is key to the tool's usefulness. For instance, searching for executions for tests with v 1.2 and which ones failed, compared to v 1.3, is a really useful feature.

0 votes
Cormac Flood
Contributor
September 7, 2017

Out of interest - has anyone ever had a feature request implemented by Zephyr? This looks like yet another request where years go by without addressing the issue. This particular request is 4 years old! Zephyr looks good from an evaluation point of view, but once you start using it you see its limitations and no amount of feature requests will ever fix it. In short - ok product, terrible support.

0 votes
Sven Schrade
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!
September 7, 2017

We are evaluating this software at the moment. It is a great Add-On for JIRA.

But we can't use it properly without custom fields like precondition for each test step.

 

What is the status of this feature request?

We really would buy and use this software, but without this feature, we have to use another software.

0 votes
Deleted user August 8, 2017

+1

Sure would be nice to have a build number with the execution info

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events