I want to find combined execution report for 'Pass' and 'Blocked' execution Statuses. What should be the ZQL?
@Smit Belani You can navigate to search test execution page and try any of the below zql queries
project = "XYZ" AND executionStatus in (Blocked, Pass)
or
project = "XYZ" AND (executionStatus = Blocked OR executionStatus = Pass)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can just add this with your current query -
"AND executionStatus in (PASS, BLOCKED)"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.