我在 Rest Assured 代码中有以下发布请求:
我想参数化它。请建议。
given().contentType(JSON).with()
.body("\"id\":"123",\"email\":\"abv@gmail.com\"}").expect().body("status",
notNullValue()).when().post("https://localhost:8080/product/create.json");
参数
身份证,邮箱。
当我声明字符串变量 id,email 并尝试传入 body() 时,它不起作用。
不工作的代码:
String id="123";
String email=abc@gmail.com;
given().contentType(JSON).with()
.body("\"id\":id,\"email\":email}").expect().body("status",
notNullValue()).when().post("https://localhost:8080/product/create.json");