SaveOffset attribute in web_reg_save_param

Loadrunner
SaveOffstet:

SaveOffset attribute defines how many places after the Left Boundary, dynamic value should be captured.

Example:

radiobutton1="Chennai"

Dynamic value to be captured is Chennai

web_reg_save_param("City",
"LB=radiobutton",
"RB=\"",
"SaveOffset=3",
LAST);

Result:

City = Chennai

Here, the LB is radiobutton and we have mentioned the SaveOffset as 3 . So it will capture Chennai leaving 1=" (3 places after the LB) and save it in the Correlation Parameter City.

21 comments: