CAPTURE PROBLEM

hello
i have problem when i want capture this its no problem when i start in debugg
but when i create a job it not capture
1

BLOCK:HttpRequest
LABEL:services
  url = "https://www.example.com/"
  TYPE:STANDARD
  $""
  "application/x-www-form-urlencoded"
ENDBLOCK

IF STRINGKEY @data.SOURCE Contains "You do not have any services"
BLOCK:ConstantString
LABEL:No services
  value = "No services"
  => CAP @Noservices
ENDBLOCK

ELSE
BLOCK:ConstantString
LABEL:Has services
  value = "Has services"
  => CAP @Hasservices
ENDBLOCK
END

try this maybe can help you , needs change for you want:

BLOCK:HttpRequest
LABEL:services
  url = "https://www.example.com/?gws_rd=ssl"
  TYPE:STANDARD
  $""
  ""
ENDBLOCK

BLOCK:ConstantString
LABEL:Not Have services
  value = "No services"
  => VAR @Not_Have_services
ENDBLOCK

BLOCK:ConstantString
LABEL:Have services
  value = "Yes services"
  => VAR @Have_services
ENDBLOCK

IF STRINGKEY @data.SOURCE Contains "You do not have any services"
SET CAP @Not_Have_services "No services"
ELSE
SET CAP @Have_services "Yes services"
END