How to add condition block or statement?
-
There is a statement In the config. like this:
FUNCTION Replace "\u0026" "&" "<v>" -> VAR "v1"
Want to do add a condition sentence to determine if continue
Such as,if v1 is not empty
continue
else
do the previous REQUEST block
endHow to realize this?
thanks much for help.
-
IF "<v1>" NotEqualTo "" SET STATUS SUCCESS ELSE JUMP #YOURBLOCK ENDIF
-
thanks much I will try it out