We have an action attached with the library file in QTP. When I will click on run button,which file is going to be executed first a)Action b)Library
Answer / jpmumbai10
Action is going to be executed first. In Action only we are
calling functions or repository,...
| Is This Answer Correct ? | 3 Yes | 1 No |
What is a programmatic description?
I want two test two agents login for the flight website. Here is the scenario: I want to go through 1-3 rows for one user login and other user login I want to go though 3-5 rows. How would you set this up in qtp. Thank You
In qtp, explain what is keyword driven automation framework?
What we are looking for is to load properties of object dynamically as for our application the global repository will pretty huge. It will be really helpful to us if something similar to following functions of Winrunner is available in QTP. #Define descriptor auto strDesc; #set property in the descriptor Gui_desc_set_attr(strDesc,?Class?,?Edit?); --- put other properties #Add Edit box to GUI Map Gui_add(? ?,strWindowName,strEditboxName,strDesc);
How to find Operating system information using QTP script?
if you run one test script in internetexplorer the same test you run in mozilla ffirefox is it possible or not how is it.
Explain types of descriptive programming?
How to give a call to another action from one action?
How do I lauch my test website using code from qtp in different environmet, uat and PPTE?
I have below user Defained function function AddTwo(ByVal a, ByVal b) Dim Ans Ans=a+b MsgBox Ans End function Now my question comes here...from given below methods which method is right to call above function?Which is Wrong and why? 1. AddTwo(2,4) 2. Call AddTwo(2,4) 3. AddTwo 2,4 4. Call AddTwo 2,4
what is the difference between Automation object model(AOM) and test object model(TOM)
I wanted to create Data Driven test for login page (loginname,password). Password is same for all the loginnames. I recorded the script for one user. I mentioned all the user names in the global excel sheet with the column name as "Loginname". I mentioned 5 loginnames. I selected tools- >datadriver and select loginname. Select parameterize and select parameter all option.Changed the parameter name to "loginname" which i mentioned in the global excel sheet. I executed the script. For the users 2 and 4 only, the script is failing... can anybody explain why the script is failing for users 2 and 4.