Multiple choice technology testing

Web_convert _Param is the function used to

  1. Using corelated parameter in decoded form

  2. Using corelated parameter in encoded form

  3. Using parameter in encoded form

  4. Using paramter in decoded form

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

web_convert_param() converts correlated parameters between encoded and decoded formats. URL parameters are typically encoded (e.g., spaces become %20), and this function allows you to work with them in either form as needed for your script logic. Option B correctly states it uses correlated parameters in encoded form.

AI explanation

web_convert_param is a LoadRunner function used to convert a correlated parameter's value between formats — most commonly taking a value captured in plain form and converting it into its encoded (e.g., URL/HTML-encoded) form so it can be reused correctly in a subsequent request. This is different from simply using a parameter that's already in encoded or decoded form without conversion.