0

工具: IBM Mobilefirst TestWorkbench 8.6.0.1
操作系统: Windows 7

有一个显示 3 个文本框的应用程序,其中两个用于输入数字,第三个显示数字总和
记录测试。(在两个文本框中分别输入数字;结果显示在第三个测试框中)

播放时,是否可以将数字存储在变量中,添加它们并与应用程序显示的结果进行交叉验证?

以上将帮助我们验证银行应用程序中的交易

4

2 回答 2

0

是的,有可能

  • 首先,在您的脚本中创建一个变量(打开“文本资源”节点,右键单击“测试变量”并选择“添加”菜单
  • 然后,在移动数据视图中,右键单击包含数字的元素,然后选择“从文本创建变量赋值”并将值分配给您之前刚刚创建的变量
  • 对第二个变量执行相同的操作
  • 然后在要进行求和的脚本处,只需添加一个自定义代码,首先拆分脚本(菜单'Split Mobile or Web UI actions..')并插入一个自定义代码(菜单'插入>自定义代码'在您刚刚创建的“应用程序中”节点上)
  • 添加2个变量作为自定义代码的参数并实现求和

您可以在此处找到自定义代码示例http://www-01.ibm.com/support/knowledgecenter/SSBLQQ_8.7.0/com.ibm.rational.test.lt.common.doc/topics/textndteswcc.html?cp=SSBLQQ_8 .7.0%2F0-6-11-0&lang=en

多米尼克

于 2015-03-13T14:38:01.000 回答
0

在下面找到我用于执行问题中提到的操作的 Custon 代码(编辑了一下)

在“自定义代码详细信息”中添加参数。代码中的 args[0] 是指“自定义代码详情”中添加的第一个参数。

package customcode;
import org.eclipse.hyades.test.common.event.VerdictEvent;
import com.ibm.rational.test.lt.kernel.services.ITestExecutionServices;

/**
 * @author unknown
 */
public class Class implements
        com.ibm.rational.test.lt.kernel.custom.ICustomCode2 {

    /**
     * Instances of this will be created using the no-arg constructor.
     */
    public Class() {
    }

    /**
     * For javadoc of ICustomCode2 and ITestExecutionServices interfaces, select 'Help Contents' in the
     * Help menu and select 'Extending Rational Performance Tester functionality' -> 'Extending test execution with custom code'
     */
    public String exec(ITestExecutionServices tes, String[] args) {

        String L4_InitBalance = args[1];
        String L1_InitBalance = args[0];

        String L4_FinalBalance = args[3];
        String L1_FinalBalance = args[2];



        if((L4_InitBalance == L4_FinalBalanc)&&(L1_InitBalance == L1_FinalBalance))
            tes.getTestLogManager().reportVerificationPoint("SFT PASSED",VerdictEvent.VERDICT_PASS,"SFT has PASSED");
        else
            tes.getTestLogManager().reportVerificationPoint("SFT FAILED",VerdictEvent.VERDICT_FAIL,"SFT has FAILED");

        return null;
    }

}
于 2015-04-14T09:49:23.473 回答