Unanswered question

How can I create/set/read a boolean value type variable?

I would like to create boolean style variables as flags for when certain VUs should wait/run/stop/etc. It appears that this is not possible as constant variables are immutable. What do you suggest?

Adam V.
Adam V.

Adam V.

Level
0
25 / 100
points

Answers

Nouredine A.
Nouredine A.

Nouredine A.

Level
4
5000 / 5000
points
Team

You could create a variable with list type that contains your boolean values. Then use a variable modifier to switch from one value to the other.

Another way could be to create your boolean variable from a Javascript and manage it from there.

You should look at the NeoLoad documentation in Javascript section.

Adam V.
Adam V.

Adam V.

Level
0
25 / 100
points

Thank you for your help