I'm trying to make use of ArrayList<String> in a BeanShell PostProcessor. Is this possible? I get an error with the following code...
import java.util.ArrayList; sessions = new ArrayList<String>(); Error is... ERROR - jmeter.util.BeanShellInterpreter: Error invoking bsh method: eval In file: inline evaluation of: ``import java.util.ArrayList; sessions = new ArrayList<String>(); //sessions = . . . '' Encountered "<" at line 3, column 25. Thanks, Glenn
