I'm working on some JMeter test plans that employ BeanShell assertions. Within these assertions I want to acess some user properties. There are several ways to access them:
JMeterUtils.getProperty("propertyName")
${__P(propertyName)
props.get("propertyName")
Where are the differences and what are the pros and cons of each option? Are they wrapper of each other or do they have specific functionality?
Thank you!