I am using a CSV Data Set Config to read a CSV file.
In BeanShell Sampler i have written
1: ${varAcc};${AccountNumber};
2: vars.put("${varAcc}","${AccountNumber}");
When there was only line 1 the output is perfect which comes from csv file. When I add the 2nd line it gives error
ERROR - jmeter.util.BeanShellInterpreter: Error invoking bsh method: eval Sourced file: inline evaluation of: `` A1;1003963; vars.put("A1","1003963");
Do I import any package ?