-1

I have a test scenario where I need to upload a large file via api, and it approximately takes 30minutes, how can I keep the test alive and wait till the response is thrown back ?Currently i added some waits but I am sure expectedConditions / waits are not going to help me. Any other suggestions or anyone had similar experiences?

Currently i added some waits but I am sure expectedConditions / waits are not going to help me. Any other suggestions or anyone had similar experiences?

Mano Kugan
  • 207
  • 6
  • 23
  • Possible duplicate of [In REST Assured, how do I set a timeout?](https://stackoverflow.com/questions/46889970/in-rest-assured-how-do-i-set-a-timeout) – bhusak Sep 10 '19 at 11:39
  • @bhusak no,I need to keep it alive for minimum 30minutes, i dont think link helps me, thanks – Mano Kugan Sep 12 '19 at 00:15

1 Answers1

1

You didn't provide too many details in your question, but I think using Awaitility may help you solve the problem.

If not, try to provide more details on what you want to achieve and what did you try so far.

grigorij
  • 36
  • 3