POSTMAN -检查响应头的值是否为空

w8biq8rn  于 2023-10-18  发布在  Postman
关注(0)|答案(2)|浏览(211)

我不知道如何检查头的值是否为null。我有一个测试,以确保头部在那里:

pm.test("Check there is an header", function() {
   pm.response.to.have.header("random");
});

然而,由于值随每个标记而变化,我只想确保random不为null。

2izufjch

2izufjch1#

OMG!它就像pm.response.to.be.header("random").to.not.eql( null);一样简单

tcomlyy6

tcomlyy62#

pm.response.to.have.header("random");
pm.expect(pm.response.headers.get('random')).to.not.eql(null);

相关问题