You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 20, 2021. It is now read-only.
I am attempting to use the Gherkin statement @Given I send a :method request to :url with parameters:. I have a query parameter that has a . in it, item.id, so I create the table node like this
Then I send a "GET" request to "/endpoint" with parameters:
| key | value || item.id | 1 |
which transforms my query parameter to item_id and my API ignores this and tests don't run properly. The function parse_str cannot create variables with a . because this is illegal in PHP.
The snippet that creates the $parameters array could be updated from