Hello All,
I am scripting a test application (web).
I setup the runtime parameters "Reset user session and emulate new browser between each iteration" = Yes
But the execution of my script is working once.
After, I have response : "Session Expired" on all actions
How can we ask Neoload to clean the cache avec each iteration ?
If you use the option to reset the session between each iteration then all user information like cookies, cache, variables are reset. That's why you get that "Session Expired" error.
If you only want to reset cache between iterations then the best is to set the Reset of user session option to "No" and put at the end of your Actions container a Javascript containing the following call:
context.currentVU.clearCache();
Thanks a lot Nouredine.
It's working now.