I am using JMeter for load testing, I am creating 1000 threads each sending an http request as follows:
{"email" : "test${__threadNum}@test.com"}
that's working fine, now I need to add a more complicated scenario. I need to pass email encrypted with my custom encryption method.
something like: {"email" : MyCustomClass.encypt("test${__threadNum}@test.com")}
Is there a way to call custom java classes from JMeter.