[Resolved] Property Expansion on Request Properties
I want to add a property expansion on the request property name. This is so I don't have to specify the name of the request in every request that I created. I see that I can reference this via groovy by using ${=request.name#request} but I want to be able to use this within the request itself.
I figured out the problem here. I had to use nested property expansion to do what I needed. On the above example, the correct syntax is "${${=request.name}#request}".