REST API登录会话

时间:2019-01-31 09:37:58

标签: rest-assured

使用放心的方式期待登录会话。请告诉我是否有人可以解决。

我们正尝试使用硒输入数据,并尝试使用剩余的Assured API测试获取响应。

公共类RestAssuredAPITest {

public void validateResponseValue() throws IOException {
    Response response1 = RestAssured.given().get(
            "https://qa3.swapstech.net/fxoffice/ofac/search.json?_dc=1548854001440&name=AEROCARIBBEAN AIRLINES&address=&match=Any Word&sensitivity=Medium&page=1&start=0&limit=25");
    String json = response1.asString(); // converting response in String
    Gson gson = new Gson();
    if (json != null) {
        Of Of = gson.fromJson(json, Of.class);
        A.getRecord();
        B.getType();
        C.getScore();
        D.getName();
        E.getAddress();

    }
}

我们需要将使用硒输入的输入数据与放心的API的响应进行比较。

0 个答案:

没有答案