- Advanced UFT 12 for Test Engineers Cookbook
- Meir Bar Tal Jonathon Lee Wright
- 414字
- 2021-08-05 17:09:13
Storing data in the Environment object
The Environment
global object is one of UFT's reserved objects and it can be used to store and retrieve both runtime and design-time data.
Note
For a more detailed description of the Environment
object, please see the next recipe Retrieving data from the Environment object.
How to do it...
Proceed with the following steps:
- To store a parameter at design time, navigate to File | Settings from the UFT menu and then select Environment. From the Variable type list box, select User-defined, as shown in the following screenshot:
- Click on the + button on the right of your Environment window. The Add New Environment Parameter window will open. Enter the new parameter's (variable) name and value:
- Click on the OK button to approve. You will notice that the newly created variable, with its value, now appears on the list. You should pay attention to the Type column, in which it indicates that the variable we just created is
Internal
:
What does it mean? A user-defined variable is Internal
when we define it through the UFT GUI. It becomes External
when either we export the variables to an XML file or define them directly in such a file and later, load the file with the variables and values to the test.
How it works...
Definitions of the types of variable classifications are as follows:
- Internal variables: When you open an existing test, which has an
Internal
variable defined, these will be loaded automatically. Changes made to their values during the run session will not be saved. In this sense, the values given toInternal
variables using the GUI can be referred to as default values. - External variables: When you open an existing test, which has its user-defined variables loaded from an external XML file, these will be loaded automatically. Their values cannot be changed during the run session. In this sense, the values given to
External
variables can be referred to as constant values.
There's more...
We can also store a value to an Environment variable dynamically from the code. Such a variable will have global scope but will be accessible during runtime only. This means that you will not see it in the list of Internal
variables, as shown in this recipe. The procedure is equivalent to using the default Add
method of the Scripting.Dictionary
object, as shown in the following line of code:
Environment("MyEnvParam") = "MyEnvValue"
See also
Refer to an article by Yaron Assa at http://www.advancedqtp.com/reservedobjects-as-an-env-object-replacement.
- iOS Game Programming Cookbook
- UI智能化與前端智能化:工程技術、實現方法與編程思想
- Data Analysis with Stata
- Instant Lucene.NET
- Mastering Backbone.js
- 計算機應用基礎案例教程
- Learning Hadoop 2
- C# Multithreaded and Parallel Programming
- Test-Driven JavaScript Development
- Android應用開發實戰(第2版)
- 零基礎學C語言(第4版)
- Clojure Data Structures and Algorithms Cookbook
- Isomorphic Go
- C語言王者歸來
- Python編程零基礎入門