How can I Get one parameter in getCurrentPOSTData ?

Dear Friends !

How can I Get one parameter in getCurrentPOSTData ?

My session have a lot parameters but I can retrive only one parameters

Can I use getCurrentPOSTData("PARAMETER") ?

Thanks a Lot.

The only way to do this would

The only way to do this would be to parse the POST parameters in a script. All of the parameters are delimited by an &, so you would

postArray = scrapeableFile.getCurrentPOSTData().split("&");
for (i=0; i
{
valPair = postArray[i].split("=");
key = valPair[0];
val = valPair[1];
if (key.equals("Desired text"))
{
session.log("Found it");
}
}