51Testing软件测试论坛

 找回密码
 (注-册)加入51Testing

QQ登录

只需一步,快速开始

微信登录,快人一步

手机号码,快捷登录

查看: 3659|回复: 4
打印 上一主题 下一主题

如果将RFT的script提出来单独运行

[复制链接]

该用户从未签到

跳转到指定楼层
1#
发表于 2007-11-7 20:49:56 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
用了一段RFT,做了几个测试脚本(工程),现在想将他们都集到一个swing的界面中,想实现从一个界面(通过点击各个按钮)分别去调用各个测试工程。
不知道能实现吗?RFT的script会不会离开Funtional Tester就不能运行了?
谢谢!!
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏
回复

使用道具 举报

该用户从未签到

2#
 楼主| 发表于 2007-11-8 17:04:53 | 只看该作者
谢谢你的回复..
再请问,应该将每个RFT以什么样的格式导出,让swing调用呢?
回复 支持 反对

使用道具 举报

该用户从未签到

3#
发表于 2007-11-13 16:12:47 | 只看该作者
command line?
回复 支持 反对

使用道具 举报

该用户从未签到

4#
发表于 2007-11-19 17:49:17 | 只看该作者
RFT帮助文档中有关于如何使用命令行的详细介绍

但是,script的命令行执行同样必须在安装了RFT的pc上
回复 支持 反对

使用道具 举报

该用户从未签到

5#
发表于 2007-11-20 15:38:15 | 只看该作者
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
回复 支持 反对

使用道具 举报

本版积分规则

关闭

站长推荐上一条 /1 下一条

小黑屋|手机版|Archiver|51Testing软件测试网 ( 沪ICP备05003035号 关于我们

GMT+8, 2024-11-9 05:16 , Processed in 0.087124 second(s), 27 queries .

Powered by Discuz! X3.2

© 2001-2024 Comsenz Inc.

快速回复 返回顶部 返回列表