This command is used to check that a value is truthy (i.e. true or populated).
Truthy examples: true, 1, "string".
true
1
Non-truthy examples: false, 0, null.
false
0
null
- assertTrue: ${"a" === "a"}
assertVisible
assertNotVisible
Last updated 2 years ago