InterviewSolution
Saved Bookmarks
| 1. |
How many types of environment variables QTP supports? |
|
Answer» QTP supports three types of Environment variables −
The given below syntax used to retrieve the Environment Variable Environment.Value( "name") = "TutorialPoints" OREnvironment.Value( "OS") = " TutorialPoints" Whereas Environment.Value ("name") The syntax will return name as TutorialPoints Environment.Value ("OS") This will return your system OS |
|