|
这个QTP调用自己的环境变量,
File->Test Settings中environment项TestDir
Path of the folder in which the test is located
从qtp帮助中复制了详细信息,你参考下吧
Environment Object
Description
Enables you to work with environment variables.
You can set or retrieve the value of environment variables using the Environment object. You can retrieve the value of any environment variable. You can set the value of only user-defined, environment variables.
Syntax
To set the value of a user-defined, environment variable:
Environment (VariableName) = NewValue
To retrieve the value of a loaded environment variable:
CurrValue = Environment (VariableName)
Argument
Type
Description
VariableName String The name of the environment variable.
NewValue Variant The new value of the environment variable.
CurrValue Variant The current value of the environment variable.
Example
The following example creates a new internal user-defined variable named MyVariable with a value of 10, and then retrieves the variable value and stores it in the MyValue variable.
Environment.Value("MyVariable")=10
MyValue=Environment.Value("MyVariable") |
|