↧
Answer by Danny Dainton for How to do 'OR' Operation in POSTMAN Tool
You could do this, it was close to what you had already:pm.test('Frequency Check', () => { _.each(pm.response.json(), (arrItem) => { pm.expect(arrItem.FREQUENCY).to.be.oneOf(["1 Month" , "3...
View ArticleHow to do 'OR' Operation in POSTMAN Tool
I have a test to check if I am getting the object of the response array is either 1 Month or 3 Months or 6 Months etc.I have created tests like ones below but these are passing all the time, even for...
View Article
More Pages to Explore .....