真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

LoadRunner關(guān)聯(lián)函數(shù)的使用loadruner關(guān)聯(lián)web_reg_save_param

以下事例介紹了LoadRunner 關(guān)聯(lián)函數(shù)的使用,希望對大家有所幫助。

創(chuàng)新互聯(lián)是一家專業(yè)提供莘縣企業(yè)網(wǎng)站建設(shè),專注與做網(wǎng)站、成都網(wǎng)站制作、HTML5建站、小程序制作等業(yè)務(wù)。10年已為莘縣眾多企業(yè)、政府機(jī)構(gòu)等服務(wù)。創(chuàng)新互聯(lián)專業(yè)網(wǎng)站設(shè)計(jì)公司優(yōu)惠進(jìn)行中。

web_reg_save_param 和關(guān)聯(lián)的使用

1. 作用:保存動態(tài)數(shù)據(jù)。該數(shù)據(jù)的來源為html源碼。
2.使用
順序:web_reg_save_param(); 
          web_submit_data(); 
          lr_message(); 

3.web_reg_save_param()的屬性
1)在尋找動態(tài)數(shù)據(jù)時(shí),可以對該數(shù)據(jù)的范圍進(jìn)行限制,通過左邊界和右邊界進(jìn)行限制。即:LB,RB兩個(gè)屬性。

Portion of string to save to parameter

LB

RB

entire string

empty

empty

a string delimited by boundaries

boundary

boundary

the beginning of a string until the first right boundary

empty

boundary

the last left boundary until the end

boundary

empty


來源loadrunner幫助文檔
其中LB/IC 是忽略字符的大小寫。

2)ORD屬性
是將找到的動態(tài)變量保存到數(shù)組中。默認(rèn)是ord=1.如果搜索到的字符是多個(gè),并想將他保存在數(shù)組里,則ord=all;他們分別保存到pr_1 pr_2 .....。其中pr_count為內(nèi)部函數(shù),統(tǒng)計(jì)數(shù)組的個(gè)數(shù)。

3)search 屬性
設(shè)置搜索的范圍,可以是header,body,header and body,html body。

4)SaveOffset屬性
偏移量。從搜索到的字符串中,取子串。默認(rèn)saveoffset=0.
5) SaveLen 屬性
取串的長度。也是從搜索到的字符串中,取子串。


4.例子:
1)
char *pr;
web_reg_save_param("pr","LB=pr","RB="
",LAST); 
web_submit_data("pr.php 
                          "url=http://" 
                           "TargerFrame="  
                            ...... 
                            LAST); 
lr_message("value: %s",lr_eval_string("{pr}"));

然后你就可以在運(yùn)行的log中看到結(jié)果。
2)關(guān)聯(lián)的例子

char *pr;
web_reg_save_param("pr","LB=pr","RB="
",LAST); 
web_submit_data("pr.php 
                          "url=http://" 
                           "TargerFrame="  
                            ...... 
                            LAST); 

i=atoi(pr_count)

這個(gè)函數(shù)的作用還是蠻大的。希望能得到大家的關(guān)注。

web_reg_save_param 和關(guān)聯(lián)的使用

1. 作用:保存動態(tài)數(shù)據(jù)。該數(shù)據(jù)的來源為html源碼。
2.使用
順序:web_reg_save_param(); 
          web_submit_data(); 
          lr_message(); 

3.web_reg_save_param()的屬性
1)在尋找動態(tài)數(shù)據(jù)時(shí),可以對該數(shù)據(jù)的范圍進(jìn)行限制,通過左邊界和右邊界進(jìn)行限制。即:LB,RB兩個(gè)屬性。

Portion of string to save to parameter

LB

RB

entire string

empty

empty

a string delimited by boundaries

boundary

boundary

the beginning of a string until the first right boundary

empty

boundary

the last left boundary until the end

boundary

empty


來源loadrunner幫助文檔
其中LB/IC 是忽略字符的大小寫。

2)ORD屬性
是將找到的動態(tài)變量保存到數(shù)組中。默認(rèn)是ord=1.如果搜索到的字符是多個(gè),并想將他保存在數(shù)組里,則ord=all;他們分別保存到pr_1 pr_2 .....。其中pr_count為內(nèi)部函數(shù),統(tǒng)計(jì)數(shù)組的個(gè)數(shù)。

3)search 屬性
設(shè)置搜索的范圍,可以是header,body,header and body,html body。

4)SaveOffset屬性
偏移量。從搜索到的字符串中,取子串。默認(rèn)saveoffset=0.
5) SaveLen 屬性
取串的長度。也是從搜索到的字符串中,取子串。


4.例子:
1)
char *pr;
web_reg_save_param("pr","LB=pr","RB="
",LAST); 
web_submit_data("pr.php 
                          "url=http://" 
                           "TargerFrame="  
                            ...... 
                            LAST); 
lr_message("value: %s",lr_eval_string("{pr}"));

然后你就可以在運(yùn)行的log中看到結(jié)果。
2)關(guān)聯(lián)的例子

char *pr;
web_reg_save_param("pr","LB=pr","RB="
",LAST); 
web_submit_data("pr.php 
                          "url=http://" 
                           "TargerFrame="  
                            ...... 
                            LAST); 

i=atoi(pr_count)

這個(gè)函數(shù)的作用還是蠻大的。希望能得到大家的關(guān)注。

 


當(dāng)前名稱:LoadRunner關(guān)聯(lián)函數(shù)的使用loadruner關(guān)聯(lián)web_reg_save_param
鏈接分享:http://weahome.cn/article/jippeg.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部