• 软件测试技术
  • 软件测试博客
  • 软件测试视频
  • 开源软件测试技术
  • 软件测试论坛
  • 软件测试沙龙
  • 软件测试资料下载
  • 软件测试杂志
  • 软件测试人才招聘
    暂时没有公告

字号: | 推荐给好友 上一篇 | 下一篇

用Rational Functional Tester创建随需应变的自动测试脚本

发布: 2008-6-18 10:47 | 作者: 不详 | 来源: ibm | 查看: 257次 | 进入软件测试论坛讨论

领测软件测试网

进而我们对SearchLotusLinkHelper中方法findTestObjectInBrowser(String property1, String value1, String property2, String value2)的做相应的修改,使它能够得到当前语言环境下属性的表述形式。

 protected TestObject findTestObjectInBrowser(String property1, String value1,
String property2, String value2)
 {
  TestObject[] foundTOs ;
  String val1 = utilities.getInstance().getLocalText(value1);
  String val2;
  //在当前浏览器页面中查找
  if(null==property2)
   foundTOs = browser_htmlBrowser().find(atDescendant(property1,val1)) ;
  else
  {
   val2 = utilities.getInstance().getLocalText(value2);
   foundTOs = browser_htmlBrowser().find(atDescendant(property1,value1,property2,val2)) ;
  }
  //如果没有找到满足条件的TestObject
  if(foundTOs.length<1)
  {
   throw new com.rational.test.ft.ObjectNotFoundException("Can NOT find TestObject with
   "+property1+"<"+value1+">,"+property2+"<"+value2+">");
  }
  //如果找到多个TestObject满足条件,
  else if(foundTOs.length>1)
  {
   throw new AmbiguousRecognitionException("Found multi-TestObject with
   "+property1+"<"+value1+">,"+property2+"<"+value2+">");
  }
  //返回唯一的查找结果
  return foundTOs[0];
 }
 

 

最后,我们在脚本SearchLotusLink中加上一个开关,用来设置当前所使用的语言环境。我们只需要简单地设置一下这个开关,同样的脚本就可以在中英文两种环境下进行测试。按这种模式,测试还可以延伸到其它语言环境中。

 


 public void testMain(Object[] args)
 {
  //设置当前所使用的语言环境
  utilities.getInstance().setCurrentLocale(utilities.CN_LOCALE);  
  startBrowser("");
  document_htmlDocument().waitForExistence();
  // HTML Browser
  browser_htmlBrowser(document_htmlDocument(),DEFAULT_FLAGS).loadUrl(utilities.getInstance().
  getLocalText("IBMurl"));
  // Document: IBM United States: http://www.ibm.com/us/
  text_q().waitForExistence();
  text_q().setText("lotus");
  button_search().click();
  
  link_httpWwwLotusCom().waitForExistence();
  IFtVerificationPoint vp1 =
  vpManual("vp1","http://www.lotus.com/",link_httpWwwLotusCom().getProperty(".href"));
  vp1.performTest();  
 }
 

延伸阅读

文章来源于领测软件测试网 https://www.ltesting.net/


关于领测软件测试网 | 领测软件测试网合作伙伴 | 广告服务 | 投稿指南 | 联系我们 | 网站地图 | 友情链接
版权所有(C) 2003-2010 TestAge(领测软件测试网)|领测国际科技(北京)有限公司|软件测试工程师培训网 All Rights Reserved
北京市海淀区中关村南大街9号北京理工科技大厦1402室 京ICP备10010545号-5
技术支持和业务联系:info@testage.com.cn 电话:010-51297073

软件测试 | 领测国际ISTQBISTQB官网TMMiTMMi认证国际软件测试工程师认证领测软件测试网