Not
Evaluates the underlying child and returns the inverse value.
Children Tags
(isalertpresent | ischecked | isconfirmationpresent | iseditable | iselementpresent | isordered | ispromptpresent | issomethingselected | istextpresent | isvisiblefalse | true | not | and | eq | gt | lt | neq | or | within | similar | match | isset | rendezvous_check | rendezvous_exists | share_exists)
Usage Examples
Example #1
<if>
   
<not>
      
<eq op1="${ready}" op2="false" />
   
</not>
   
<then>
      
<log>not ready yet...</log>
   
</then>
</if>
Example #2
<if>
   
<not>
      
<and>
         
<eq op1="${value2}" op2="${test.value2}" />
         
<eq op1="${value3}" op2="${test.value3}" />
      
</and>
   
</not>
   
<then>
      
<log>Ready to go!</log>
   
</then>
</if>