I need to send the following GET request with Rest Assured:
http://some.url.com/path?filter[key1]=value1&filter[key2]=value2
I was trying to do it with queryParams and formParams, but it constructs params as filter={"key":"value"}.
In JQuery I can do this with:
$.param({filter:{key1:"value1"}})
given(). queryParam("filter[key1]", "value1"). queryParam("filter[key2]", "value2"). when(). get("some.url.com"). then().