rockapple 发表于 2005-12-1 15:47:46

请教:getenv("M_ROOT")返回值是什么

static test_path=getvar("testname");
        static guifile_path =test_path & "\\flight1a.gui";
        static app_path = getenv("M_ROOT");
        static app_name= app_path& "\\samples\\flight\\app\\flight1a.exe";
        report_msg(app_name);

        GUI_unload_all();
        GUI_load(guifile_path);
        report_msg(guifile_path);
        if (invoke_application(app_name,"","",SW_SHOW)!=0)
        {
                report_msg("AUT is not found. exiting.");
                texit;
        }
        wait(3);

# Login
        set_window ("Login", 6);
        edit_set ("Agent Name:", "tester");
        password_edit_set("Password:", "kzptnyoslzjsaz");
        button_press ("OK");

请问getenv("M_ROOT")返回值是什么?
学生刚刚开始学习winrunner,请各位老师多多指导!!!

梦醒十分 发表于 2005-12-1 17:52:29

它是返回环境变量列表中的一个值。
打开安装目录下的dat\wrun.ini用记事本打开看一下下面的三个选项。
返回的是安装WR的路径。

[ 本帖最后由 梦醒十分 于 2005-12-1 18:05 编辑 ]

rockapple 发表于 2005-12-2 10:11:53

多谢楼上!!!
页: [1]
查看完整版本: 请教:getenv("M_ROOT")返回值是什么