Skip to content Skip to sidebar Skip to footer

Jmeter Jsr 223 Language Js Vs Javascript

About JSR 223 Sampler languages, I can choose between javascript (ECMAScript ECMA 262 Edition 51 / Oracle Nashorn 1.8.0_144) and js (ECMAScript ECMA 262 Edition 51 / Oracle

Solution 1:

I don't think you will be able to remove entries from there as the drop down is being populated on-the-fly using ScriptEngineManager.getEngineFactories() method which performs discovery of available scripting engines in JMeter Classpath.

With regards which language to use js or javascript the answer is none. It is recommended to use Groovy language for any form of scripting in JMeter tests as well-behaved Groovy scripts can be compiled and cached therefore their performance will be pretty like to "normal" Java code while other scripting languages are being interpreted each time they are being called so when it comes to high loads your JSR223 test element using JavaScript might become a performance bottleneck and ruin your test.

References:

Post a Comment for "Jmeter Jsr 223 Language Js Vs Javascript"