On 13 March 2017 at 16:28, Artem Fedorov <artem.fedo...@blazemeter.com> wrote: > Hello, > > I am testing jmeter-plugins with JMeter 3.2 and find some problem with > Selenium > Web Driver <https://jmeter-plugins.org/wiki/WebDriverSampler/>. > > This Driver use org.apache.jmeter.util.JSR223BeanInfoSupport.LANGUAGE_NAMES > <https://github.com/apache/jmeter/blob/abc235d6e8d26f8490f9332320d58354c9c24af7/src/core/org/apache/jmeter/util/JSR223BeanInfoSupport.java#L41> > but > now it is a private field. With this exception will be fail to creating > popupMenu in TestPlanGui. > > Can you make this field public?
It was an unfortunate error that the array was ever created as public, as non-empty public arrays destroy immutability and affect thread-safety. Access to arrays can only safely be done through a method that creates a copy of the array. Please raise a Bugzilla enhancement request. > Thanks, > Artem