How to pass the parameter in Walk Query Section?
I don't how to pass parameters in the walktestsession Query?
for(var i=0;i<testSessionsDetails.length;i++)
{
tempSessionID=testSessionsDetails[i].toString();
<%beginrelationshipsdetail Query[(walktestsession[tempSessionID])]%>
alert("<%Relationship Expected Results%>");
<%endrelationshipsdetail%>
}
If I pass the value directly then it is working fine, but if we try to assign either Integer or String value then it is not accepting.
for(var i=0;i<testSessionsDetails.length;i++)
{
tempSessionID=testSessionsDetails[i].toString();
<%beginrelationshipsdetail Query[(walktestsession[“3856”])]%>
alert("<%Relationship Expected Results%>");
<%endrelationshipsdetail%>
}
Any help would be really appreciated.
Thanks in Advance,
Sithik

