一,簡單的web頁面,經過錄制 登陸+ 新建計劃 兩個交易的請求html
· 很顯然,開始提取登陸後的token值,提示web
No match found for the requested parameter "token". Check whether the requested boundaries exist in the response data. Also, if the data you want to save exceeds 256 bytes,cookie
因此在腳本前用 web_set_max_html_param_len("10240");拓展存儲token字段的長度;函數
· token值取出以後,發現腳本中只有一個地方使用到了:spa
web_add_cookie("token={token}; DOMAIN=mtsweb-test.eaf.evergrande.com");htm
參數化以後,重跑腳本,發現提示:未登陸。blog
二,而後就疑惑了,爲啥還提示未登陸呢,對比了下頁面請求和腳本請求,發現token
腳本中缺乏報文頭io
因此,使用LR自帶函數 web_add_auto_header("Authorization","{token}");補充完整class
三,再次執行,新建計劃成功。