LoadRunner 脚本增加header

脚本

Action()
{  
   //lr_set_debug_message( 16 | 2,1 );
   web_add_header("Authorization","Basic Y2hhb3Nmb21vbmV5LXNlcnZpY2UtcHJvdmlkZXItZGV2LXYxLjAuMC1kZXY6MTIzNDU2Nzg=");
   web_submit_data("GET",          //     web_submit_data 使用此函数实现post方式的表单提交,此函数只能用作post函数,     web_custom_request   get和post都可以     用                                                                                                                                                                              //web_submit_form     只能用于get  
   //"Action=http://10.166.15.30:8083/testPerformance",   // 接口地址
	"Action=http://10.166.15.28:18800/chaosfomoney-service-provider-dev-v1.0.0/dev/master",   // 接口地址
   "Method=GET",  // 传送方式                               
   "RecContentType=text/html",
    "Mode=Http",
    "Referer=", // 引用地址                       
    //ITEMDATA,  
    //"name=param", "value=1", ENDITEM,
	LAST);
     // lr_think_time(0.001);
	//lr_set_debug_message( 16 | 2,0 );
}

 
  

postman上使用

LoadRunner 脚本增加header_第1张图片


参考: https://blog.csdn.net/huangjin0507/article/details/52131196

你可能感兴趣的:(测试)