51Testing软件测试论坛

标题: 如果将RFT的script提出来单独运行 [打印本页]

作者: baozouxx    时间: 2007-11-7 20:49
标题: 如果将RFT的script提出来单独运行
用了一段RFT,做了几个测试脚本(工程),现在想将他们都集到一个swing的界面中,想实现从一个界面(通过点击各个按钮)分别去调用各个测试工程。
不知道能实现吗?RFT的script会不会离开Funtional Tester就不能运行了?
谢谢!!
作者: baozouxx    时间: 2007-11-8 17:04
谢谢你的回复..
再请问,应该将每个RFT以什么样的格式导出,让swing调用呢?
作者: 5am    时间: 2007-11-13 16:12
command line?
作者: bellcliff    时间: 2007-11-19 17:49
RFT帮助文档中有关于如何使用命令行的详细介绍

但是,script的命令行执行同样必须在安装了RFT的pc上
作者: lovetest6    时间: 2007-11-20 15:38
Generally speaking you would need to create a new JVM that starts with the same options as we start RFT normally.
So you need to pass the startup.jar that you will find in the installation location.

Question to ask is what exactly is meant by starting RFT engine?
Maybe you can figure out something from this:
It is meant to call an RFT script from another RFT project.

<<<---

public void testMain(Object[] args) throws IOException, InterruptedException
{
//Give the relevant details
String workspace = "C:\\Documents and Settings\\Administrator\\IBM\\rationalsdp7.0\\Workspace\\";
String project = "Project2";
String script = "Script2";
Object parameters = "\"param 1\" \"param 2\""; //Declare this only if parameters need to be passed
Process process;
File file = new File(workspace +File.separatorChar+ project + File.separatorChar + script.replace('.',File.separatorChar) + ".java");
if (!file.exists())
{
System.out.println("Can't find " + script + " in " + project);
System.exit(0);
}
script = script + " ";

String command = "\""+System.getenv("IBM_RATIONAL_RFT_ECLIPSE_DIR")+ File.separatorChar +
"jdk" + File.separatorChar + "bin" + File.separatorChar + "java\"" + " -jar "+ "\"" +
System.getenv("IBM_RATIONAL_RFT_INSTALL_DIR") + File.separatorChar + "rational_ft.jar\""
+ " -playback " + script + parameters + " -datastore \"" + workspace + project + "\"";
process = Runtime.getRuntime().exec(command);
process.waitFor();
}

The customer needs to append this code his script wherever he needs to use callScript() to invoke a script that is not in the current project.
The customer Overwirtes the String workspace with his current workspace as well as project & Script with the concerned project or script that he wants to run.
The parameters should be enterered carefully. each parameter to be passed should be enclosed within quotes like
\"Parameter 1\"
If there is no parameter to be passed then the object parameter may be left blank.


PLEASE SEE THAT "PROJECT->BUILD AUTOMATICALLY" IS CHECKED BEFORE TRYING THIS WORKAROUND.
This method does not invoke scripts that are not in the current workspace




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