51Testing软件测试论坛

标题: LR的问题,-web_reg_find(),希望老师能给答复。 [打印本页]

作者: jamesxiang    时间: 2007-9-2 14:38
标题: LR的问题,-web_reg_find(),希望老师能给答复。
我们都知道,web_reg_find()和web_find()都有返回值,0表示成功,1表示失败,在实际应用中我们可以利用这个作为事务结束条件。
例如:
Action()
{
   int a;
  lr_start_transaction("search");

//
页面请求
//
a=web_find("text_check","what=welcome",LAST);
  if(a==0)
   lr_end_transaction("search", LR_PASS);
else
lr_end_transaction("search", LR_FAIL);

return 0;
}   

而web_reg_find()就不能通过它的返回值来作为事务的判断条件,因为web_reg_find()的返回值0和1表示web_reg_find()是否注册成功(web_reg_find是注册类型函数,它本身并不执行),并不代表查找的内容是否存在,也就是说无论查找的文本内容是否存在,都返回0,(和web_find的返回值意义就不同了)。
我想问的是有什么方法用web_reg_find()来作为事务的判断条件?
web_find()(帮助不太推荐使用web_find而是推荐使用web_reg_find)要写在请求后,也就是要现在事务内了。这样通过事务统计出来的响应时间就(包括了web_find()这个函数的执行时间)不真实了。而web_reg_find()是写在请求前面的。如果能用web_reg_find()来作为事务结束条件,那就是最好的.
作者: Jor    时间: 2007-9-2 15:17
Web_reg_find不是作为web_find用的 而是由其他用处
checkpoint有2个函数 一个是web_find 一个是web_image_check
既然有了web_find 为什么要用web_reg_find呢?
作者: 海龙    时间: 2007-9-3 15:45
The web_find function has been superseded in C Language scripts by web_reg_find, which runs faster and can be used in both HTML-based and URL-based recording. web_find is supported in C for backward compatibility. In Java and Visual Basic, it has not been superseded.
作者: 海龙    时间: 2007-9-3 15:49
而web_reg_find()就不能通过它的返回值来作为事务的判断条件,因为web_reg_find()的返回值0和1表示web_reg_find()是否注册成功(web_reg_find是注册类型函数,它本身并不执行),并不代表查找的内容是否存在,也就是说无论查找的文本内容是否存在,都返回0,(和web_find的返回值意义就不同了)。
我想问的是有什么方法用web_reg_find()来作为事务的判断条件?


利用web_reg_find创建的参数SaveCount ,作为判断条件就可以了


web_find()(帮助不太推荐使用web_find而是推荐使用web_reg_find)要写在请求后,也就是要现在事务内了。这样通过事务统计出来的响应时间就(包括了web_find()这个函数的执行时间)不真实了。而web_reg_find()是写在请求前面的。如果能用web_reg_find()来作为事务结束条件,那就是最好的.

事务时间等于Duration-Wasted Time,web_reg_find执行的时间Loadrunner会自动减掉的




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2