ContributionsMost RecentMost LikesSolutionsRe: How to bulk assign Test Cycles Sadly there's no UI feature to do this in bulk, but a couple of options that might help: I expect this is possible using the API (Cloud, ) and looping through a range of Test Cycles. You can reduce mouse clicks in the UI by staying in the Test Cycle edit page and changing the Test Cycle ID (found at the end position) in the URL Re: Coverage report filtering by issues and label? Thanks discombobulated for the catch and correction - good to have this clear for anyone who might want to use this in the future! Re: Coverage report filtering by issues and label? Hi, Zephyr report logic is contained in the URL when the report is generated. Taking a look at how each URL is structured (for the reports you mentioned above) it seems possible to splice the two report criteria together to produce the results you need. For example, inside each URL you can see how the criteria is built... Coverage report by label: tql=testResult.projectId%20IN%20(99999)%20AND%20testCase.labelName%20IN%20(%22AUTO-TEST%22)&epicJQL=&title=Coverage%20Report Coverage report by issues: tql=testResult.projectId%20IN%20(10165)&epicJQL=&title=Coverage%20Report Resulting change might be something like this: tql=testResult.projectId%20IN%20(99999)%20AND%20testCase.labelName%20IN%20(%22AUTO-TEST%22)&epicJQL=&title=Coverage%20Report I've tested that the spliced report generates (it does) but not whether the data displayed is correct. Could you please let us know if this works for you? Re: "Parsing response failed" error inconsistently when attempting to upload screenshots to Test Steps The Smartbear team sometimes respond here but this community is user driven so I'm guessing it's not frequently monitored for questions. You can of course reach the support team here: SmartBear Support Re: Mandatory "Custom fields" in the traceability matrix report Sadly not possible. The data will however show up if you export the report to Excel. Re: Is it possible to add test cases to a test cycle from API? Server version is here Zephyr Server API (v1) and I guess you would add Test Cases to a Test Run and set their Result to Not Executed. It seems that /testrun POST will work for that purpose? Does that help? Re: How to filter test cases by multiple labels using AND logic? With some creativity this is possible. You will need to: Run a report with both labels in the criteria (to get the source TQL code). Copy the report URL, which contains the TQL code for the report. Paste and amend the TQL section. Optionally, wrap this process into a bookmarklet that can be clicked and prompts and accepts label input and produces the report. In step 3 I recommend pasting the URL twice so you have an original for reference, and the amended version you need to produce. Here is an example of an original and amended URL with the relevant IN statements in bold: Extract of original URL that uses the IN statement and functions as an OR operator: ...tql=testResult.projectId%20IN%20([PROJECT ID])%20AND%20testCase.labelName%20IN%20(%22One%22%2C%20%22Two%22)%20AND%20testCase.onlyLastTestResult%20IS%20true&epicJQL=&title=Test%20execution%20results%20(list)&projectId... Extract of amended URL that now has two IN statements (one for each label) and effectively functions as an AND operator: ...tql=testResult.projectId%20IN%20(10165)%20AND%20testCase.labelName%20IN%20(%22One%22)%20%20AND%20testCase.labelName%20IN%20(%22Two%22)%20AND%20testCase.onlyLastTestResult%20IS%20true&epicJQL=&title=Test%20execution%20results%20(list)&projectId Re: Zephyr Essential for Jira Lost Our Test Executions Thanks for sharing and great to hear that this is fixed for you! Re: Zephyr Essential for Jira Lost Our Test Executions If you want to contact Smartbear direct for support, you can find the link in the Help & Support button in the bottom right-hand corner (see image). The scenario you describe is very odd. From the point of view of the UI, to remove executions it would be done manually, and Zephyr protects executions from being deleted - you can archive test cases but executions are not affected; and you cannot delete an archived test if it has executions. Would you please share your findings when the support team help you with this? Re: Use Zephyr Scale Cloud API to add existing test cases to and newly created test cycle. I'm not a user of the API, so can't verify this before suggesting, but to add test cases to a test cycle, I think you need to use the Create Test Execution endpoint, and add test cases with an execution status of Not Executed. This would mimic what happens when adding test cases to test cycles in the UI, because what actually happens behind the scenes is that a test execution is created - in Zephyr, a test case can have multiple test executions, so technically, when you add a test case to any test cycle you are actually creating a test execution record for that test case. I hope this helps - let me know if not? And if you feel like posting your updated code when you have a solution that would be awesome for the community to have available! Good luck.