I have an endpoint that, eventually, returns this response (before this, response is {}):
{ "field": { "A.B":"C" } }
I could not make the retry until work:
Given path 'endpoint'
And retry until response.field == { "A.B":"C" }
When method get
I couldn't figure out what I' doing wrong because this retry always fail even when the response is { "field": { "A.B":"C" } }
Thanks