重试功能在 3 次以上时不起作用

retry function is not working for more than 3 count

我在我的代码中使用重试来检查 GET 状态,我重试命中直到我得到 200。

我的代码是:

Given configure retry = { interval: 5000 , attempts: 5 }
And  URL 
And  param query = 'name:' + title
And def auth = callonce 
read('classpath:examples/Tokens/ViewToken.feature') 
{'viewAccessToken': 'viewAccessToken' }
And print ' view token', auth.viewAccessToken
And header Authorization = auth.viewAccessToken
And retry until responseStatus == 200 

方法获取时。

但是即使我已将重试次数设置为 5 次,这也仅适用于 3 次。

我该如何解决这个问题?

* configure retry = { count: 5, interval: 5000 }