【发布时间】:2013-03-27 09:52:55
【问题描述】:
我想关联我之前请求部分中的值 EXTRARES 以在即将到来的请求中用作普通 URL。
首先我有这个:
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);
然后我有这个:
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);
considetakingadump?5 中的数字 5(在 web_url("Next") 的 URL 部分中是我想用第一个请求的值替换的值(在 web_url("considertakingadump") 的 EXTRARES 部分中) )。
如何将请求的 EXTRARES 部分中的值关联起来以用于定价请求?
【问题讨论】: