반응형
status, jsonBody 사용해보기
Test 탭에 스크립트 작성 후 Send 버튼 클릭
pm.test("response is ok", function () {
pm.response.to.have.status(200);
});
pm.test("response body has json with form data", function () {
pm.response.to.have.jsonBody('form.foo1', 'bar1')
.and.have.jsonBody('form.foo2', 'bar2');
});
Raw 데이터 추출
Send 버튼 클릭
https://learning.postman.com/docs/writing-scripts/test-scripts/
반응형
'🎪 놀고있네 > Postman' 카테고리의 다른 글
[Postman] Test Script 사용하기 - 데이터 타입 확인하기 (2) | 2022.04.06 |
---|---|
[Postman] Test Script 사용하기 - string 확인하기 (1) | 2021.12.18 |
[Postman] Pre-request Script, Test Script 차이 (0) | 2021.07.23 |
[Postman] API 테스트해보기 - GET Method (0) | 2021.06.11 |
[Postman] postman 설치하기 (0) | 2021.06.11 |
댓글