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 |
how to insert QTP to display errors and other description in the test results instead of halting execution by throwing error in the mid of executin due to an error (for object not found)?
can we run the scripts of qtp 8.2 in the qtp7.0?
Error handling
i need the word "good morning" to be displayed by default whenver we click upon the blank test while opening the qtp. Could you please answer...
www.icici.com ,after this.. home page wll came, in this page what r the items we r going to test for manual and what are items we r going to test for QTP... explian clearly with example
Ehat is the descriptive programing in QTP?
how do u prepare Test Environment ?
Explain hybrid framework with advantages and disadvantages?
What is file database?
we have one text box and one list box(list box appear in same page or another page) what ever the text enter in text box that must be displyed in list box as first one. for example if we enter 10 in text box that is the 1st item in list box . after that we enter 11 then 11 is the 1st item and 10 is 2nd item. the maximum limit of list box is 10 items. if we enter 11th item the 10th item is deleted and llth one is add as 1st one and 9th one goes to 10th position
Using Regular expression method some particular value is not present in given value. HOow do use regular expression? Forexample password all number,character ,special character are accepted but (_',)underscore,comma are not used. How do write regular expression.
We have a text file which contains 1 to 100 numeric values sequentially like 1 2 . . 100 Now we have to count them and transfer to XML file by writing a code in qtp.