Dictionary对象经常用来存储对象 ,把Dictionary添加到注册表中QTP的保留对象 ,则可以用于替代QTP的环境变量(Environment),在Action之间共享数据 。
下面的脚本摘自QTP的CodeSamplesPlus并做了点修改,添加了点注释:
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
'As an alternative to using environment variables to share values between actions
' you can use the Dictionary object.
'The Dictionary object enables you to assign values to variables that are accessible from all actions (local and external)
'called in the test in which the Dictionary object is created.
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
' 把Dictionary添加到注册表,这样可以在使用GlobalDictionary时有Intelisence智能感应提示
'in order to have intelisence for the Dictionary object, and have it recognized by other actions, it is added to the registry
Dim WshShell
Set WshShell =CreateObject("WScript.Shell")
WshShell.RegWrite "HKCU/Software/Mercury Interactive/QuickTest Professional/MicTest/ReservedObjects/GlobalDictionary/ProgID", "Scripting.Dictionary","REG_SZ"
Set WshShell = Nothing
'clearing the Keys if they exist in the object 清空Dictionary中的项
If GlobalDictionary.Exists("AgentName") Then
GlobalDictionary.Remove("AgentName")
End If
If GlobalDictionary.Exists("Password") Then
GlobalDictionary.Remove("Password")
End If
If GlobalDictionary.Exists("OrderNumber") Then
GlobalDictionary.Remove("OrderNumber")
End If
'add 3 keys to the Dictionary object 添加项
GlobalDictionary.Add "AgentName", "Mercury"
GlobalDictionary.Add "Password","Mercury"
GlobalDictionary.Add "OrderNumber", 0
' 使用GlobalDictionary中的数据
'login to Mercury Flight application using the Dictionary objects we just defined.
Dialog("Login").WinEdit("Agent Name:").Set GlobalDictionary.Item("AgentName")
Dialog("Login").WinEdit("Agent Name:").Type micTab
Dialog("Login").WinEdit("Password:").SetSecure GlobalDictionary.Item("Password")
Dialog("Login").WinButton("OK").Click
'inserting an order in the flight application
Window("Flight Reservation").WinObject("Date of Flight:").Type "111111"
Window("Flight Reservation").WinComboBox("Fly From:").Select "Denver"
Window("Flight Reservation").WinComboBox("Fly To:").Select "Frankfurt"
Window("Flight Reservation").WinButton("FLIGHT").Click
Window("Flight Reservation").Dialog("Flights Table").WinButton("OK").Click
Window("Flight Reservation").WinEdit("Name:").Set "6"
Window("Flight Reservation").WinRadioButton("Business").Set
Window("Flight Reservation").WinButton("Insert Order").Click
'Window("Flight Reservation").ActiveX("Threed Panel Control").WaitProperty "text", "Insert Done...", 10000
Window("Flight Reservation").WinObject("AfxWnd40").WaitProperty "text", "Insert Done...", 10000
'saving the Order number in the Datatable, and then saving it in a dictionary item
Window("Flight Reservation").WinEdit("Order No:").Output CheckPoint("Order No:")
GlobalDictionary.Item("OrderNumber") = datatable.Value ("Order_No_text_out",dtGlobalSheet)
'closing the application
Window("Flight Reservation").Close
'reports to the report all the Keys & items found in the dictionary object
For i=0 to GlobalDictionary.Count-1
KeysArray = GlobalDictionary.keys
ItemsArray = GlobalDictionary.Items
reporter.ReportEvent Done,"Reporting Dictionary Item Number : " & i , "Key : " & KeysArray(i) & " , Item : " & ItemsArray(i)
Next
' 调用Action2
RunAction "Action2", oneIteration
Action2的代码:
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
' This code segment also exists in the main Action.
' in this reusable action, the value are avaiable ONLY when they are called from Test "Dictionary"
' calling this action as a stand alone, will result in an error since those Keys & values won't be valid.
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
' GlobalDictionary中的数据可以跨Action使用
'reports to the report all the Keys & items found in the dictionary object
For i=0 to GlobalDictionary.Count-1
KeysArray = GlobalDictionary.keys
ItemsArray = GlobalDictionary.Items
reporter.ReportEvent Done,"Reporting Dictionary Item Number : " & i , "Key : " & KeysArray(i) & " , Item : " & ItemsArray(i)
Next
利用Dictionary对象在QTP测试中共享数据

本文介绍如何在QTP测试中通过将Dictionary对象添加到注册表来实现不同Action之间的数据共享,替代环境变量,并展示了如何在测试脚本中使用Dictionary对象存储和访问数据,以及如何在复用Action中利用这些数据。通过实例演示了如何在测试流程中跨Action使用全局变量,提高测试代码的复用性和效率。
5764

被折叠的 条评论
为什么被折叠?



