I want to perform a GET request using matrix parameters. http://localhost:8080/car/bmw;color=red
There is allready this question answered Creating a GET request with matrix parameters ,but there is not real step by step explanation there.
I want to perform a GET request using matrix parameters. http://localhost:8080/car/bmw;color=red
There is allready this question answered Creating a GET request with matrix parameters ,but there is not real step by step explanation there.
Also you can do it easier still using rest-assured.
given().urlEncodingEnabled(false).when(). get("http://localhost:8080/car/bmw;color=red")