v0.2.3
Breaking Change:
multipart post
replaced with method post
multipart post
has been removed and a simple method post
will suffice. The steps of multipart field
or multipart entity
are sufficient to determine user intent, and that would drive the behavior of the next POST. So now only soap action
is the odd man out (as the only other step besides method
that issues the HTTP request to the server), which should be fine.
# before
And multipart field file = read('test.pdf')
When multipart post
# after
And multipart field file = read('test.pdf')
When method post
Notable Fixes:
#23 Much better reporting of match failures especially when large arrays are in the picture.
#8 A set of nice, real-life examples are available now in the karate-demo sub-folder