Reputation: 849
I can successfully pass parameters when I embed them in the path like below
However, it seems that passing query parameters using Parameters tab doesn't pass them right:
Should I use 'Parameters' tab only when I do POST method? I know it's a similar question with Passing parameters to JMeter but I can't solve my problem.
Upvotes: 2
Views: 374
Reputation: 168157
Both approaches are the same so feel free to use the most convenient to you, in case of manually amending the query string you will need to take care of ?
and &
characters, URL-encoding the values either manually or via __urlencode() function and in case of multiple attributes using "Parameters" section is more readable
Upvotes: 0
Reputation: 263
You are using the param page
in the first example and pages
in the second one.
Upvotes: 3