I am trying to find the count of testcases mapped to test execution based on the label (e.g UI_Functional, UI_Regression). Can you please help with the measure. i have created a custom field as below
[jira.customfield_11111]
name=“Tests association with a Test Execution”
dimension = true
multiple_values = true
data_type=“string”
split_by=","
I use custom links.
customfield id = “custmofield_11222”
customfieldname>Test association with a TestExecution</customfieldvalue
custmofieldvalues
customfieldvalue>[ABC-2821, ABC-2822, ABC-2823]</customfieldvalue
/customfieldvalues
I have used a measure which is counting the testcases based on the label in test execution instead of label on Tests
([Measure].[Xray Test Runs],[Label].[UI_Regression])
Thanks, @rajm, for additional information!
Xray test run-related measures like “Xray Test Runs” are grouped by Test Execution fields by default (see documentation: Xray Test Management).
However, you can create a calculated measures (in Measures section) to change the relation of the “Label” dimension and measure “Xray Test Runs”.
The expression might look like this:
Sum(
--filter set of Tests
Filter(
Descendants([Xray Test].CurrentMember,[Xray Test].[Test]),
--Test issue has selected Label
DefaultContext((
[Measures].[Xray Tests created],
[Xray Test].CurrentHierarchyMember,
[Label].CurrentHierarchyMember
)) > 0 ),
--sum up test runs ignoring Component assigned to Test Execution
([Measures].[Xray Test Runs],
[Label].CurrentHierarchy.DefaultMember)
)
Here are few more topics on similar use cases how to analyse Xray test runs by Test fields, not Test Execution fields:
thanks for the reply .
It worked and provided the count of tests for the label selected as expected.
However, when clicked on the “Drill through Issue” even on small count, i was not able to view the tests details.
I received the error popup “There was error when performing your request. Please retry or go to other page.”
@zane.baranovska
thanks for the reply .
It worked and provided the count of tests for the label selected as expected.
However, when clicked on the “Drill through Issue” even on small count, i was not able to view the tests details.
I received the error popup “There was error when performing your request. Please retry or go to other page.”
Can you please suggest how i could see the test details using “Drill through Issue” .
Hi @zane.baranovska , I have a similar situation,.
I need to obtain all Xray Test Executed of every Xray Test Plan with label “Sportbooks-Performance”. I’m using it Label as Pages.
I´m using eazy for jira and Xray.
eazyBI has a new functionality for Xray data. Now, you can import Test fields as separate dimensions to group and filter test runs and executions using Test fields without complex calculations (this improves report performance). The feature is available on Cloud and since eazyBI version 7.2.
Go to import options, tab Add-ons, and import the Label of the Test issue.