Skip to content

Implement support for multiple Query params with same name #40

@kovalu

Description

@kovalu

In REST it's common to have query string params with same name, to get multiple values added to 1 variable, example:
myservice.com?param=value1&param=value2

But with RestAssured.Net the .Query(key, value) method is using Dictionary and adds only 1st query param with that name, others are ignored.

Please implement support for providing multiple values.
Possible syntax:

.Query("param", "value1").Query("param", "value2")

OR

.Query("param", "value1", "value2")

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions