Didn’t I answer this yesterday?
I want to validate these field but I am getting error - Help - Postman
Your language field validation is failing with undefined, as you are not targeting the array element properly.
It needs to be the following.
pm.test("Language field value validation", function () {
pm.expect(jsonData.data.TechnicalDetails[0].language).to.eql(["Bangla", "English"]);
});
Same principle for the other assertions.