Forum Discussion
Wamboo
Community Hero
Are you sure that you are using the "Exist" and "Visible" prop in the right way?
I use Exists with boolean value like true or false
example:
if (obj.Exists == false) {
tristaanogre
6 years agoEsteemed Contributor
Wamboo wrote:
Are you sure that you are using the "Exist" and "Visible" prop in the right way?
I use Exists with boolean value like true or false
example:
if (obj.Exists == false) {
Or, probably even more correct... to check for not exists
if (!obj.Exists)
to check for Exists
if (obj.Exists)
You don't need to compare to a boolean value, just use the boolean result.
- kaiiii6 years agoRegular Contributor
Hi,
Thanks for your reply.
Yes i am sure ..Assert condition that i am using is correct.
Consition is false but execution go inside.. (strange for me)
- Wamboo6 years agoCommunity Hero
We were talking about the "True" in if condition. Did You try to chang it for boolean true or false.
In my opinion you can't check bool value with string "True" value.
Related Content
- 2 years ago
- 10 years ago
- 5 years ago
Recent Discussions
- 4 days ago
- 4 days ago