51Testing软件测试论坛

标题: qtp与外部xml文件数据的传递 [打印本页]

作者: chengyujiao    时间: 2013-7-5 10:58
标题: qtp与外部xml文件数据的传递
我新建了一个xml文件,如何用vbs语言实现将case1运行过程中的值传送到case2的调用action中使用?
  例如 case1 运行中产生一个系统当前时间值currenttime,如何将这个值写入xml文件,并从case2中读取,应用在case2的action中。
  请各位高手帮帮忙
作者: wuxue107    时间: 2013-7-5 22:30
下面就是我用的。

  1. Dim objconfig ,v_file
  2. Public Function openconfig(file)
  3.         v_file = file
  4.         Set objconfig = CreateObject("msxml2.domdocument")
  5.         If CreateObject("scripting.filesystemobject").FileExists(v_file) Then
  6.                 objconfig.load file
  7.         Else
  8.                 objconfig.loadXML "<root><param></param></root>"
  9.         End If
  10. End Function

  11. Public Function getconfig(name)
  12.         Set tmp = objconfig.selectSingleNode("/root/param/"&name)
  13.         If tmp Is Nothing Then
  14.                 getconfig = ""
  15.         Else
  16.                 getconfig = tmp.text
  17.         End If
  18. End Function

  19. Public Function setconfig(name,value)
  20.         Set tmp = objconfig.selectSingleNode("/root/param/"&name)
  21.         If tmp Is Nothing Then
  22.                 Set newelement = objconfig.createElement(name)
  23.                 newelement.text = value
  24.                 objconfig.selectSingleNode("/root/param").appendChild newelement
  25.         Else
  26.                 tmp.text = value
  27.         End If
  28.         objconfig.save v_file
  29. End Function

  30. ''########   使用例子  ##########
  31. openconfig "mm.xml"
  32. setconfig "testname","test01"
  33. MsgBox getconfig("testname")
复制代码

作者: chengyujiao    时间: 2013-7-8 10:12
回复 2# wuxue107


    谢谢你,问题解决了




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