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

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

软件测试工具QTP中几个交换值的方法

发布: 2010-2-01 14:03 | 作者: 网络转载 | 来源: 领测软件测试 | 查看: 90次 | 进入软件测试论坛讨论

领测软件测试网

'*******************sub Class_Terminate End***********

  'the function only for providing a demo....

  Public Function GetSheetData(sFileName, SheetNumber, strRangeBegin, strRangeEnd)

  With Environment("Excel_Object")

  .Visible = False

  Set bjWorkbook = .Workbooks.Open(sFileName) '"C:/temp/Branches.xls"

  Set bjWorkSheet = objWorkbook.WorkSheets(SheetNumber)

  Reporter.ReportEvent micDone, "Current range:"&strCurrentQueryRangeBegin, _

  objWorkSheet.Range(strRangeBegin&":"&strRangeEnd).value

  Set bjWorkbook = Nothing

  Set bjWorkSheet = Nothing

  End with

  End Function

  End Class

  Set oExcelInstace1 = New OurExcel

  oExcelInstace1.GetSheetData "C:/temp/Branches.xls", 1, "A200", "A200"

  oExcelInstace1.GetSheetData "C:/temp/Branches.xls", 1, "A201", "A201"

  Set oExcelInstace2 = New OurExcel

  oExcelInstace2.GetSheetData "C:/temp/Branches.xls", 1, "A202", "A202"

  oExcelInstace2.GetSheetData "C:/temp/Branches.xls", 1, "A203", "A203"

  'with class's Class_Terminate method, you can call it using the following style....

  'Notice:This behave will call destructor of your class.............

  'If has reference exist, then you will find one excel process in your machine.

  Set oExcelInstace1 = Nothing

  Set oExcelInstace2 = Nothing

  里面有两个Environment变量,一个Excel_Object,一个Reference_counter。我想尽力把这东西做的象COM,当然有很大很大差距。当初就是为了找个全局的地方放数据而已。

  3)存储在QTP的GlobalTable中。

  涉及2个函数。一个是写入到GlobalTalbe,另一个是从其读入。

  Function setValue(strColName, strColValue)

  On Error Resume Next

  DataTable.Value(strColName, dtGlobalSheet) = strColValue

  If Err.Number <> 0 Then DataTable.GlobalSheet.AddParameter strColName, strColValue

  setValue = strColValue

  End Function

  Function getValue(strColName)

  Dim outputTemp

  On Error Resume Next

  outputTemp = DataTable.Value(strColName, dtGlobalSheet)

  If Err.Number <> 0 Then

  getValueFromGS = ""

  Exit Function

  Else

  getValue = outputTemp

  End If

  End Function

  一般这个方法的实现,可能还要遍历列名来判断是否存在,这样如果变量很多肯定效率低。QTP对于DataTable取数的实现肯定也进行了遍历或Find这样的方法,所以任务尽量让QTP来解决比较好,比如随机数干脆就直接用RandomNumber对象而取代 vbscript的Randomize加Rnd。

  而On Error在这里很好用,不能把它只想用于容错恢复,这里算巧用吧,好像还是容错。

延伸阅读

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

22/2<12

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

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