Generic way to create meaningful and easy to use assertions for the Robot Framework
libraries. This tools is spin off from Browser library project, where the Assertion
Engine was developed as part of the of library.
Supported Assertions
Currently supported assertion operators are:
Operator
Alternative Operators
Description
Validate Equivalent
==
equal, equals, should be
Checks if returned value is equal to expected value.
value == expected
!=
inequal, should not be
Checks if returned value is not equal to expected value.
value != expected
>
greater than
Checks if returned value is greater than expected value.
value > expected
>=
Checks if returned value is greater than or equal to expected value.
value >= expected
<
less than
Checks if returned value is less than expected value.
value < expected
<=
Checks if returned value is less than or equal to expected value.
value <= expected
*=
contains
Checks if returned value contains expected value as substring.
expected in valu
|