I have Recorded the login action of IRCTC Website and Correlated the Session_ID and Engine_ID
Refer the Screenshot below to view the Dynamic Session_ID and Engine_ID
https://www.irctc.co.in/cgi-bin/bv60.dll/irctc/booking/planner.do?screen=fromlogin&
BV_SessionID= @@@@1502947175.1355111858@@@@ &
{Left Boundary } Dynamic Value { Right Boundary}
Steps of Correlation :
- Find the Dynamic Value in Http Request in this case Session_ID and Engine_ID are Dynamic values
- Add Regular expression Extractor for Seesion_ID e.g : BV_SessionID=(.*?)& check number of occurrences in Regular expression tester
- Add Regular expression Extractor for BV_EngineID e.g : BV_EngineID=(.+)"> check number of occurrences in Regular expression tester
5. Replace BV_SessionID and BV_EngineID values with Variable ${S} and ${E}
Refer the screen Shot Below