pm.test("TX Status Equals One", function () {
pm.expect(pm.cookies.has('HttpOnly')).to.be.false;
pm.expect(pm.cookies.has('Secure')).to.be.false;
pm.expect(pm.response.text()).to.include("TxStatus=1", "ErrorMsg=The Store does not exist");
pm.response.to.have.header("Keep-Alive", "timeout=5, max=100");
pm.response.to.have.header("Connection", "Keep-Alive");
我正在尝试为以下字段添加验证。 路径和过期...我要验证路径等于/且过期等于Session的值。
由于某种原因,我似乎无法完成此操作,欢迎您提供任何帮助。