Hi there,
I'm new to JBehave and I'm testing the tool to use it in my company.
I defined parameterized steps and I could not capture my values
When defining the following steps :
And I send application/x-www-form-urlencoded
And I receive application/xml
And mapping them to the following implementation
@Given("I send $requestContentType")
@Given("I receive $requestContentType")
I get application as a requestContentType
I get application as a responseContentType
How can I include /xml or /x-www-form-urlencoded ?
Thanks
Louis