4

In karate, how to check if in the response, name field is string type and having max length upto 35. I know how to validate, string, but don't know how to check the length at same time.

name: '#string',

Renu
  • 303
  • 3
  • 14

1 Answers1

3

you are pretty close,

"#string? _.length <= 35"

_ means self in expressions

refer 'self' validation expressions

Babu Sekaran
  • 4,129
  • 1
  • 9
  • 20