Field: Status
Description
Status is a field with different applications for different entities.
When querying requirements, scripts and incidents - it represents the selection of one of the user-defined Status picklist values.
However when querying automated tests assignments or test script assignments, this represents the status/outcome of the last run of the test e.g. Passed, Failed, Not Run etc.
Examples
Available values depend on the options available in the Status picklist in Enterprise Tester, for example:
To find all test scripts in project Testing with a status of "Approved":
Code Block |
---|
|
EntityType = Script AND Project = "Testing" AND Status = "Approved"
|
To find all script assignments which have a status of failed and were updated in the last 2 weeks:
Code Block |
---|
|
EntityType = ScriptAssignment AND Status = Failed AND LastUpdatedAt >= 2w
|
Supported Operators
=, IN, !=, NOT IN
Supported Indexes
Entity, Run
Supported Types
- AgileRun
- AutomatedTestAssignment
- AutomatedTestRun
- Incident
- Requirement
- ScriptRun
- TestScript
- TestScriptAssignment
Supported Features
Feature | Supported? |
---|
Aggregation | Yes (String) |
Sortable | Yes |
Sub-selects | No |