VerifyNotEqual
bool VerifyNotEqual(any actual, any unexpected)Description
Verifies that the actual value is not equal to the given value.
Parameters
- actual - The value retrieved from a UI control or variable.
- unexpected - The value that must not be equal to the actual value.
Example
void main()
{
VerifyNotEqual(GetText("LBL_STATUS"), "Error");
}