The below is the pseudo code:
if...then {
{execute branch1}
else
{execute branch2}
During a load test, we would like to count the number of successful transactions from branch1 and branch2 and compare the count at the end of the iteration.
If the count for branch2 is greater than 30% of branch1, the test needs to be aborted.
How can this be implemented? I am new to Neoload. Any help would be much appreciated.