I have a While controller with condition
${__javaScript("${DONE}"!="Downloaded")}
which works perfect.
Now I want to add another condition
${__javaScript("${Temp}"!="No Exceptions found")}
loop must quit in one of the above conditions.
For this I added an "If Controller" as a child of While Controller and give this condition( ${__javaScript("${Temp}"!="No Exceptions found")}
) in If Controller but did not get how to quit the loop.
What to do to quit this loop in case it finds "No Exceptions found" if it did not find "Downloaded" first?
Moreover Jmeter is generating error in .log file on evaluating If Condition, what did I do wrong?