51Testing软件测试论坛

标题: JAVA脚本里怎么调用INIT()方法里的变量 [打印本页]

作者: jacksboy    时间: 2009-1-2 16:28
标题: JAVA脚本里怎么调用INIT()方法里的变量
如果要在ACTION()方法里调用INIT()方法里的变量,怎么写?
比如:
Action()方法中:
Actions.init().i这样写么
作者: yetties2005    时间: 2009-1-2 22:01
没有这样写过。不过你可以在LR里调用自己写的DLL。
在DLL里可以写自己想要实现的东东。
作者: qunce.liu    时间: 2009-1-4 22:18
在 class Action里面定义一个类的内部变量,
然后在init()方法中赋值
然后在action()方法中调用即可
如下:
public class Actions
{
        String s;
        public int init() throws Throwable {
                    s="test1";
                return 0;
        }//end of init


        public int action() throws Throwable {
                    lrapi.lr.output_message(s);
                return 0;
        }//end of action


        public int end() throws Throwable {
                return 0;
        }//end of end
}




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