Tagged Questions

3
votes
2answers
2k views

How do I pass a variable from one Thread Group to another in JMeter

I have a JMeter test with 2 Thread Groups - the first is a single thread (which creates some inventory) and the second has multiple threads (which purchase all the inventory). I use BeanShell ...
1
vote
0answers
77 views

JMeter - Execute command over telnet using beanshell

I'm trying to write a jmeter sampler in beanshell to execute a memcached telnet interface command, specifically flush_all. I need this to clear the cache after each test as it causes tests in quick ...
1
vote
2answers
2k views

How to to extract response by XPath Extractor in JMeter?

I got the response like the following: <response> <status code='200' server_time='xxx' /> <tests> <test id='1' name='a!' status='Started' /> <test id='2' ...
0
votes
1answer
67 views

Does anyone know how to access the username and password from the Login Config Element in jMeter inside of a BeanShell?

Does anyone know how to access the username and password from the Login Config Element in jMeter inside of a BeanShell? I am trying to access the Login Config Element from and HTTPRequest also. I ...
0
votes
3answers
2k views

In JMeter and BeanShell, how can I make a variable lowercase?

In JMeter's User Parameters, how can I make a variable lowercase? Left column my_lowercase_variable Right column ${__BeanShell('${my_variable}'.toLowerCase())} //fails or ...
0
votes
1answer
485 views

How to execute java class from Jmeter

Is there a way to execute java class from jmeter? I've packaged my class with maven assembly and put it in the lib folder of JMETER_HOME. Then I created BSF Listener inside my test case and wrote : ...