SleepyD
SleepyD

Reputation: 49

Unable to recognize RETRY UNTIL definition

I am trying to implement the retry until functionality in a feature.

    Scenario: Send a valid request and verify response status = 200
        Given path requestPath
        And configure retry = { count: 10, interval: 5000 }
        And retry until responseStatus == 200
        When method get

However the step remains undefined in my ide. I have tried the following:

What else can I try to make the squiggly line go away?!?![enter image description here]1

Upvotes: 1

Views: 239

Answers (1)

Peter Thomas
Peter Thomas

Reputation: 58128

Use the latest Karate 0.9.0 (final).

Upvotes: 1

Related Questions