我不知道如何检查头的值是否为null。我有一个测试,以确保头部在那里:
pm.test("Check there is an header", function() { pm.response.to.have.header("random"); });
然而,由于值随每个标记而变化,我只想确保random不为null。
2izufjch1#
OMG!它就像pm.response.to.be.header("random").to.not.eql( null);一样简单
pm.response.to.be.header("random").to.not.eql( null);
tcomlyy62#
pm.response.to.have.header("random"); pm.expect(pm.response.headers.get('random')).to.not.eql(null);
2条答案
按热度按时间2izufjch1#
OMG!它就像
pm.response.to.be.header("random").to.not.eql( null);
一样简单tcomlyy62#