51Testing软件测试论坛

标题: 这个参数怎么改? [打印本页]

作者: lyscu    时间: 2007-11-2 11:13
标题: 这个参数怎么改?
脚本如下:
Action()
{

        lr_think_time(11);

        web_url("clicknewtask.do",
                "URL=http://192.168.15.3/myweb/clicknewtask.do",
                "Resource=0",
                "RecContentType=text/html",
                "Referer=http://192.168.15.3/myweb/calendarwork.do",
                "Snapshot=t7.inf",
                "Mode=HTML",
                LAST);

        lr_think_time(37);

        web_submit_data(
...................................
                );

        web_url("search.jsp_3",
                "URL=http://192.168.15.3/myweb/search.jsp",
                "Resource=0",
                "RecContentType=text/html",
                "Referer=http://192.168.15.3/myweb/login.do",
                "Snapshot=t9.inf",
                "Mode=HTML",
                LAST);

        lr_think_time(7);
        //显示
        web_url("calendardisp.do",
                "URL=http://192.168.15.3/myweb/calendardisp.do?authority=1&taskID=6803",
                "Resource=0",
                "RecContentType=text/html",
                "Referer=http://192.168.15.3/myweb/login.do",
                "Snapshot=t10.inf",
                "Mode=HTML",
                LAST);

        lr_think_time(4);
         //删除
        web_url("calendardel.do",
                "URL=http://192.168.15.3/myweb/calendardel.do?taskID=6803&serialnum=null",
                "Resource=0",
                "RecContentType=text/html",
                "Referer=http://192.168.15.3/myweb/login.do",
                "Snapshot=t11.inf",
                "Mode=HTML",
                LAST);

        web_url(
。。。。。。。。。。。。。。。。。
);

        return 0;
}
taskID的值是我在上面web_submit_data();中mysql数据库自动增加的编号,我怎么用lr把他取出来?我的目的是做个脚本先添加一个,然后再把它删除掉。
麻烦高手说的详细些。
作者: ersazi    时间: 2007-11-2 11:46
这就是关联问题,
如果你不会手工关联,就使用自动关联试试,应该能解决。
作者: lyscu    时间: 2007-11-2 13:24
自动关联不到,手动关联怎么做?
作者: lyscu    时间: 2007-11-4 14:40
咋个没有回贴的呢,自己顶一下。
作者: xdlj    时间: 2007-11-4 17:38
int web_reg_save_param (const char *mpszParamName, <List of Attributes>,
LAST)
在帮助里面查一下这个函数的帮助,再搜索一下以前关于这方面的帖子,就应该可以解决了
作者: hongtang    时间: 2007-11-5 17:02
标题: 使用web_reg_save_param
taskID=6803这个参数在web_url("calendardisp.do", 中会使用到,通常taskID会在当前请求的上个一个请求,也就是web_url("search.jsp_3", 的response中出现。你可以在该请求返回的代码中查找。
但是也有可能出现在更早的请求中,你自己依次查找。




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