I have generated a Web HTTP/HTML script using Load Runner 11 which eventually generates a ID at the end of the flow which i want to capture and store for future use.
The issue here is that the ID which i want to capture gets generted in a pop up. I am able to find the same ID in the generation logs but it fails when i reply the script. I searched it in the tree view but couldnt find the ID or its boundary anywhere.
In the generation logs its gets generated in a try block as below:
doAfterLoading = function() {
try {
View.message('KYC NA Result: KYC IS COMPLETE<br/>ECI ID - 0222537179<br/>Cash Equity Indicator: N<br/>STP to CASS NA.<br/>STP Result/s:<br/>Message ID: 030102103<br/>Call To STP is Successful.<br>CASS ID: 36035151<br><br/> Account has been Approved.<br/>866131670', 400, function() {
window.location.href = 'account?action=cleanup&NextAction=ViewSubmission'
})
}
I want to capture CASS ID: 36035151 above. I need this info to be used for another script which uses the captured ID.
Can anybody help me deal with the dynamic values in pop up?