I am using jmeter 3.3 and groovy and have a IF CONDITION which filters according to the response code.
here is what I am doing and it works:
${__jexl3(${code} != 000)}
Now I want to add an AND logic to this condition or an OR logic
for instance doing this:
${__jexl3(${code} != 000)} && ${__jexl3(${code} != 901)}
but this does not seem to work.
what is the proper way of adding logic operator?