why we use environment variables
Answers were Sorted based on User's Feedback
Answer / srinivas poodari
We can use the environment variables for speed up the
testing process. For example During testing if at all we
have the long path, then we give the user defined variable
to that path and run the programm.
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / issac
It can be used to pass values across actions
syntax is Environment.value=""
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / narendra
The main use of Environment variable is the value of
environment variable does not change
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / ramesh
we will use the environment variables for global values.
global values are the values which havent changed in the
etire application testing.we will use these values in our
test scripts without declarations.
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / uday
environment variable is a variable,Which you have in one
action can't be used in some other action so by using
environment variable we can use the variables in one action
in to another action.
These are global through variables
if i am wrong correct me plz
Is This Answer Correct ? | 0 Yes | 1 No |
How to handle dynamic objects in QTP?
What is the difference between "call" and "callclose"
An object is created, i dont know the methods available for that object, i want to find methods available for that object and use the required method. How i can do this???
how to write code for to select all the checkboxs in the gmail i wrote code for my question but it didn't works any body suggest what wrong my code my code is Set chkboxDesc=Description.Create() chkboxDesc("type").value="chekbox" Set chboxcollection=Browser("name:=Gmail .*").Page("title:=Gmail .*").ChildObjects(chkboxDesc) For i=0 To chboxcollection.count-1 chboxcollection(i).set "ON" Next i was getting general run time error pls help me i am in learing stage
How does you pass optional arguments in qtp?
what is meant by keyword driven frame work can any one answer plzzzzzzzzzzz
banking domain description for software tester for interview
please tell me how to identify the index of the link in the web table .links are not constant.example i want to click the link in the inbox ,search the item and click the partcular mail.(mail links count is not constant)
How can i test an application like Google Earth.In my application data will be fetched from a oracle database based upon which graphs are generated..so these all are dynamic..how can i use qtp here..alongwith that how can i test the map generated by a satellite just like google earth..
in qtp if we record a object and we record the object using virtual wizard then by which way the object is recognized that means recorded
What are the types of data tables in qtp?
i have two questions for regular expression :- Q1. I have date pattern eg-29/11/2011 29-11-2011 29.11.2011 Que- if any separator is there between date,month and year pattern should match else it should not match eg- pattern should not match in case of 2911-2011 Q2. let say i have a string and there is a number in between of that string eg.-Amount 30002.234 successfully credited to your account . now i have to match this pattern in such a way that even if decimal is not there pattern should match ,how i will do this using regular expression