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.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.