How to make IF i get "recaptcha_needed" when i send login request on websocket

I work on websocket when i hit to webscoket send i if account contains Invaild status failed but when 3 - 4 test i get captcha i wan to make if when i get captcha go to solve captcha and try again login

BLOCK:WsConnect
  customHeaders = {}
ENDBLOCK

BLOCK:WsSend
  message = "login msg"
ENDBLOCK

BLOCK:WsRead
  => VAR @wsReadOutput
ENDBLOCK

IF STRINGKEY @wsReadOutput Contains "recaptcha_needed"
BLOCK:SolveRecaptchaV2
  => VAR @captchaRespose
ENDBLOCK

BLOCK:WsSend
  message = $"login msg with captcha <captchaRespose>"
ENDBLOCK

END
BLOCK:WsRead
LABEL:WebSocket Read 2
  => VAR @wsReadOutput
ENDBLOCK

try this

removed — because fixed