REST保证和多个帖子

我正在尝试使用REST保证测试我的登录/注销功能.是否有可能有一个REST保证测试发布登录然后发布到注销?如果没有,我该如何正确测试? 最佳答案 你可以试试

expect().statusCode(HttpStatus.SC_OK)
    .given()
    .parameters("user", user, "password", URL)
    .cookie("cookie_name", "cookie_value")
    .post("/someURL");

还有一个确定的auth呼叫.

documentationexamples

点赞