How AND/OR criteria work in Auto Tag

Table of Contents

AND operator #

The AND operator is used in cases where we have two or more conditions and we need all of them to be true.

Condition 1Condition 2Result
PassFailedFailed
PassPassPass
FailedPassFailed
FailedFailedFailed

OR operator #

The OR operator is also used in cases where we have two or more conditions and we need only one of them to be true. The remaining conditions can be true or false, but at least one must be true.

Condition 1Condition 2Result
PassFailedPass
PassPassPass
FailedPassPass
FailedFailedFailed