I am having a test plan in jmeter, that contains setUp, tearDown and one main thread.
setUp thread logins the application (open a session).
main thread executes to perform a task in same session.
tearDown thread logout the application (close the session).
This is not possible because the cookies of setup thread can not be used in other thread so we can not get the session in other threads.
Please tell me how this is possible?
Thanks for help.