In web page there is five OK buttons available, while
recording i click on 3rd OK button, How QTP identify the 3rd
OK button while running script? Is qtp identify 3rd ok button?
Answers were Sorted based on User's Feedback
Answer / kiran
QTP will recognise the ok button using index property
| Is This Answer Correct ? | 20 Yes | 0 No |
Answer / deepak kumar
QTP identify the 3rd button Using Object Property.We can see Object Property using Object Spy .Each object in QTP consist number of properties.
| Is This Answer Correct ? | 6 Yes | 5 No |
Answer / tvs ramakrishna chowdary
This is again TVS Ramakrishna Chowdary...ordinal dentifier
property(Creation Time)will be available to only Browser
object....not for other objects.....so but by mistache i
posted creaton time for ok button...
Sorry for posting wrong answer...
U use ordinal identifiers either index nos or location...
both are starts from 0,1,2.......
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / tvs ramakrishna chowdary
ur having answer in ur question only..ur telling that 3rd
ok button this 3rd is nuthing but index of that button..
but here small change index nos atart form 0,1,2.....and so
on
ex:browse(browser).page(page).webbutton
("name:=ok",index:=2").click
than it understoods that third ok button
or by Creation time:
----------------------------
ex:browser(browser).page(page).webbutton
("name:=ok","creationtime:=2")
than our qtp understoods that 3rd ok button
| Is This Answer Correct ? | 2 Yes | 2 No |
Answer / sarojini
use index proeprty to close the 3rd ok button.
use for loop condition like
For i= 0 to 10
okbuttonvalue=Broswer("").page("").button
("index:="&i).getroprepoerty("value")
Next
by using this for loop condition you can get index value
from above logic take index value put in the line close the
third button
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / vikrant
Hi
Don't think in developers way. while selecting a button u
need not know the button functionality. u can simply
identify the properties by object spy.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / vijayalaxmi
By using the index identification and the oridinal
identification...
| Is This Answer Correct ? | 0 Yes | 0 No |
What is data driver in qtp?
Explain the difference between check point and output value?
what is review
how to pass parameters from one action to another using output parameters I am not calling action 2 from action 1, they are being called individually I need syntax please .. Requirement: Action 1 customer = Browser(" ").Page(" ").Link(" ").GetROProperty("value") I want to use the value stored in customer in Action 2 I do not want to use any of these actions as re-usable actions
how are environment variables used in real time projects (testing)?what answer should be given about this in interview.need real time explanation breifly?thnx in advance.
Hi Guys, I am very new to QTP tool , In real time environment how to test the application with this tool, 1. How to load application in QTP tool 2. How to write test script in QTP. 3. In manual testing we test login box (user id , password) how can we test this kind of testing with QTP tool with examples . Please guys put some focus on my questions , real time ecperienced answers would be appreciate, advance thanks ,please guys i am expecting ur answers as soon as posible
Syntact for how to call one script from another? and Syntax to call one "Action" in another?
how can we test the Triggers, Cursors, Indexes while doing Database testing in DTP??
how can i add an action(external action) programmatically?
In an Excel sheet take two fields as agentname and password and type some valid agentname and password.call that excel sheet in qtp so that qtp opens the flightreservation window taking into consideration how many records are entered in the excel sheet.For example if 3 records are entered today it will open 3 FR windows,if in near future the records are more than 3 then it will open that number of times.
Hi,iam new to automation and i have 1 year experience in manual testing.I have a little bit idea about QTP9.0 .But i have no idea about script writing using VB.Please help to learn script writing.
Scenario:2 combo boxes.1st combo contains a,b,c,d.2nd combo contains 10..20,20..30,30..40,.Selecting 'a' shld display 10...20,'b' shld display 20..30.. and so on.tell d script? 2.Random testing of 500 test cases in qtp?