Hello people!
So I tried to make a statement where whenever the config finds a specific condition it has to jump and try something else then parse something and mark it as a capture. Unfortunately this did not work with me because it does mark it as a capture in the Log section but I can’t see it marked as a capture in the Variables section, also I’ve tried to run a job with that and still can’t see it in the capture section when I get a hit.
In the bottom you’ll find the LoliCode. I created the first request with a wrong URL in purpose just to deliver my point which is when the config finds that condition with a specific variable it has to jump and try another request with another variable in the URL but if the condition does not match, it should go for the first request only and make the parses then just stop and complete the other requests bellow. Sorry for the long explanation ![]()
Here is the output in the Log section:

Here is the output (all blank) in the Variables section:

I used the site @Ruri usually uses for tests. This is the whole LoliCode:
BLOCK:HttpRequest
LABEL:GET-V1
url = "https://webscraper.io/test-sites/e-commerce/test"
TYPE:STANDARD
$""
"application/x-www-form-urlencoded"
ENDBLOCK
IF STRINGKEY @data.RESPONSECODE EqualTo "404"
JUMP #ANOTHERONE
BLOCK:Parse
LABEL:PRICES
input = @data.SOURCE
leftDelim = "class=\"pull-right price\">"
rightDelim = "</"
attributeName = ""
RECURSIVE
MODE:LR
=> CAP @PRICES
ENDBLOCK
BLOCK:Parse
LABEL:DESCRIPTION
input = @data.SOURCE
leftDelim = "class=\"description\">"
rightDelim = "</"
attributeName = ""
RECURSIVE
MODE:LR
=> CAP @DESCRIPTION
ENDBLOCK
#ANOTHERONE
BLOCK:HttpRequest
LABEL:GET-V2
url = "https://webscraper.io/test-sites/e-commerce/allinone"
TYPE:STANDARD
$""
"application/x-www-form-urlencoded"
ENDBLOCK
BLOCK:Parse
LABEL:PRICES
input = @data.SOURCE
leftDelim = "class=\"pull-right price\">"
rightDelim = "</"
attributeName = ""
RECURSIVE
MODE:LR
=> CAP @PRICES
ENDBLOCK
BLOCK:Parse
LABEL:DESCRIPTION
input = @data.SOURCE
leftDelim = "class=\"description\">"
rightDelim = "</"
attributeName = ""
RECURSIVE
MODE:LR
=> CAP @DESCRIPTION
ENDBLOCK
END
