我正在使用可靠的库进行API测试,似乎无法设置新的cookie。但我可以修改服务器设置的cookie。
given()
.cookie("cookie1", "true")
.get(url)
.then()
.assertThat().cookie("cookie1", "true");
// Fails with "Cookie "cookie1" was not
// defined in the response. Cookies are: cookie2=true, cookie3=true
given()
.cookie("cookie2", "false")
.get(url)
.then()
.assertThat().cookie("cookie2", "false");
// PASS
答案 0 :(得分:1)
根据REST-assured Documentation,您需要调用when()
和body()
方法:
given()
.cookie("cookie1", "true")
.when() // <----
.get(url)
.then()
.assertThat()
.body(equalTo("true")) // <----
请注意,我从未使用过此API,而我只是根据提供的规范进行推测。
答案 1 :(得分:-1)
你应该尝试这样的事情
given().
proxy(host("http.proxy.someDomain.com").withScheme("http").withPort(xxxx)).