Performance Center中跑LR脚本时,未定义的事务却出现在transaction summary中
我的LR脚本如下:lr_start_transaction("主txn");
...
web_url("mainpage.do",...);
...
lr_start_sub_transaction("子txn","主txn");
..
web_submit_data("login.jsp",....);
...
lr_end_sub_transaction("子txn",LR_AUTO);
lr_end_transaction("主txn",LR_AUTO);
结果在performance center中跑这个脚本时,列出很多未定义的事务。
主txn,
子txn,
_mainpage.do_主txn_47
_login.jsp_主txn_121
其中后面的数字是在脚本中的行数。而这两个未定义lr_start_transaction和lr_end_transaction的transaction状态都是pass的。
请问:有谁知道是哪里问题么? 终于找到问题所在了。
原来是Run-time Settings中,Miscellaneous>Automatic Transactions中,
不知道什么时候勾选了Define each step as a transaction.
页:
[1]