Can I validate multiple values in the response when use path from each element in array while I am using @setup in Karate framework. In example I can pass as many as columns and validate them with response.
Please refer the following snippet for more details
`Feature:
@setup Scenario: * def data = [ { id: 1 }, { id: 2322 }, { id: 33 } ]
Scenario Outline: * url 'https://httpbin.org/anything' * path id * method get
Examples:
  |id                   |StatusCode|ResponseMessage| 
  | karate.setup().data |200       |Ok             |`
 
    