Checking True or False condition in Flow decision it always executing True flow

I am checking catalog exists or not based on supplier name if i provide incorrect supplier name catalog will not find on web page in that case my condition will be false but bot is always going to true flow. How to resolve this issue

Because your expression in flow condition always returns true.
Please update the expression,

Flag = True

1 Like

Updated its working but every time need to change when ever i execute the false low? is there any other way to make flag value dynamic?

The flag is dynamic already.
In the previous activity the output of element exists is assigned to flag.
So if element exists, flag will be set to true else false.

So in the flow decision, if expression flag = true returns true will execute true branch else false branch.

Ok Thanks

1 Like

@thima,

Use flow decision after Element Exists activity.