[More Detail] [Collapse All]
Feature: As a rest client I need to use URL parameters in order to send those parameters to a restful service.
features/url_parameter.feature
- Scenario: Send parameter to a service.
link
features/url_parameter.feature:5
Given I have a web service
 
And I have "GET" service for "/test?first=1&second=2&third=3"
 
And I am a rest client
 
When I "GET" from the web service with the parameters
 
first 1
second 2
third 3
Then I receive a message with "first=1&second=2&third=3"