I want to correlate values in my previous request sections EXTRARES to be used in the upcoming request as a normal URL.
First I have this:
web_url("considertakingadump",
"URL=http://mydevserver.test.local:8080/choice/toscana/{choiceId}/considertakingadump",
"TargetFrame=",
"Resource=0",
"RecContentType=text/html",
"Referer=http://mydevserver.test.local:8080/choice/toscana/{choiceId}/klargjore?3",
"Snapshot=t79.inf",
"Mode=HTML",
EXTRARES,
"Url=/choice/css/images/icon_ikke_ok.png", "Referer=http://mydevserver.test.local:8080/choice/toscana/{choiceId}/considertakingadump?5", ENDITEM,
"Url=/choice/css/images/navigasjon/Navigation_top_2_considertakingadump.png", "Referer=http://mydevserver.test.local:8080/choice/toscana/{choiceId}/considertakingadump?5", ENDITEM,
"Url=/choice/css/images/icon_ok.png", "Referer=http://mydevserver.test.local:8080/choice/toscana/{choiceId}/considertakingadump?5", ENDITEM,
LAST);
Then I have this:
web_url("Next",
"URL=http://mydevserver.test.local:8080/choice/toscana/{choiceId}/considertakingadump?5-1.ILinkListener-next",
"TargetFrame=",
"Resource=0",
"RecContentType=text/html",
"Referer=http://mydevserver.test.local:8080/choice/toscana/{choiceId}/considertakingadump?5",
"Snapshot=t80.inf",
"Mode=HTML",
EXTRARES,
"Url=/choice/css/images/navigasjon/Navigation_top_2_considertakingadump.png", "Referer=http://mydevserver.test.local:8080/choice/toscana/{choiceId}/forslagchoice?6", ENDITEM,
LAST);
The number 5 in considertakingadump?5 above (in the URL section of the web_url("Next") is what I want to replace with the value of the first request (in the EXTRARES section of the web_url("considertakingadump")).
How can I correlate values in the EXTRARES part of a request to be used in the preciding request?