Search in JQL

How to search in JQL with custom fields? Details can be found below.

Below, we provide specifications regarding using a search in JQL function with custom fields in ATM.

ATM Test Environment

Search for work items that have been assigned a specific testing environment.

Syntax
"Test Environment"

Supported operators

"=", "=!", "IS", "IS NOT", "IN", "NOT IN"

Supported functions

  • Example: Search for Test Executions and Test Case Executions that are assigned to a staging environment.

Test Environment = staging

ATM Test Cases

Search for work items such as Test Plans or Test Executions that have been connected to a specific Test Case.

Syntax
"ATM Test cases.issues"

Supported operators

">=", ">", "<", "IS", "IS NOT", "IN", "NOT IN"

Supported functions

  • Example: Search for Test Plans that have been assigned to a specific Test Case.

ATM Test Cases.issues IN (issueID)

ATM Test Plans

Search for work items such as Test Cases, that have been assigned to a specific Test Plan.

Syntax
"ATM Test Plans.issues"

Supported operators

">=", ">", "<", "IS", "IS NOT", "IN", "NOT IN"

Supported functions

  • Example: Search for Test Cases that are not included in a "User login" Test Plan.

ATM Test Plans.issues NOT IN

ATM TE Status

Search for Test Executions that have been assigned a specific status.

Syntax
"TE Status"

Supported operators

"=", "=!", "IS", "IS NOT", "IN", "NOT IN"

Supported functions

  • Example: Search for Test Executions that haven't been assigned a "In progress" status.

TE Status =! In Progress

ATM TE Progress

Search for Test Execution items that have a certain percentage in the progress bar (e.g. 60% pass).

Syntax
"TE Progress.progress"

Supported operators

"=", "=!", "<", ">", ">=", "<=", "IS", "IS NOT", "IN", "NOT IN"

Supported functions

  • Example: Search for Test Executions with a progress that equals or is above 50%.

TE Progress.progress >= 50

ATM Test Type

Search for work items that have been assigned a specific Test Type.

Syntax
"ATM Test type"

Supported operators

"=", "=!", "IS", "IS NOT", "IN", "NOT IN"

Supported functions

  • Example: Search for testing items with Test Type field defined as Manual.

ATM Test Type = manual

Last updated

Was this helpful?