-
Hi, thanks for this great tool! My colleagues and I have the following idea/feature request I'd like to brainstorm. It would be awesome to test this API with hurl, but as we don't know how many polls it'll need to complete, we'd need some sort of looping mechanism, like the common What do you think about this idea? I would be open at trying my hand at a bit of Rust and implementing something, but I'd love to hear your opinion on this first. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @riesinger could you use the For instance:
Basically, Does it address your problematic? |
Beta Was this translation helpful? Give feedback.
Hi @riesinger could you use the
--retry
option (either with the command line or with an option section)?For instance:
Basically,
--retry
will retry a request until all asserts (explicit and implicit like status code) are OK. So, you can make a condition on the response body and indefinitely loop until this condition is met. See the documentation on …