What is an other way of "Wait" statement in QTP
I dont want to use wait("Some number").
Can any one tell this please..........
Answers were Sorted based on User's Feedback
Answer / hemakumar..m
Use Exist Method.
Ex:
Browser("title:=.*").Page("title:=.*").Link
("name:=OK").Exist(2)
It will wait upto specified time(2sec) when object does not
exist.
| Is This Answer Correct ? | 9 Yes | 3 No |
Answer / deepak
You can also use Do Until
E.g- There is a particular button in the next page which is
about to come then you can write like this:
Do Until Browser("...").Page("...").WebButton("...").Exist
Wait(1)
Loop
| Is This Answer Correct ? | 6 Yes | 2 No |
Answer / jitendra
It depends upon why you have used wait() in ur code.
Probably you can use the Sync() method.
This method will wait, till the client gets a response from
server or the Object Synchronization time is not crossed.
Browser().Page().Button().Click
Browser().Page().Sync
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / king
Increase the defult time... the default time is 20 seconds
u can increase how much u want..
| Is This Answer Correct ? | 4 Yes | 2 No |
Answer / prashanth
I use a windows application where except wait function and
wait property i have no other options.
Then how to proceed, as wait function is not a right way of
coding as I know and wait property cannot be used in case
as no object is going to change exceot the window gets
refreshed when RETURN key is clicked.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / kajal
object.WaitProperty "Property Name","Property
Value",10000
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / kumar
obj hierarchy.wait proprerty"property name",property value,extra time in milli seconds
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / suvrat sharma
Service.ThinkTime(5)
It's same as Wait(5) and will pause your execution of
script for 5 sec.
Thanks!
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / litan
Excluding Wait 2 other methods are there.
1.Browser("micclass:=Browser").page("micclass:=Page").Sync
2.Wait Property
Ex:Browser("micclass:=Browser").Page("micclass:=Page").Image
("name:=Pic).WaitProperty "Property Name","Property
Value",30000
It will wait till in next page That Property Match
| Is This Answer Correct ? | 1 Yes | 2 No |
Answer / tvs ramakrishna chowdary
timeout=0
expval=true
actval=window("Flightreservation").winbutton
("updsteorder").getroproperty("enabled")
while((expval<>actval) & (timout<30))
wait(2)
timeout=timeout+1
actval=window("FR").winbutton("UO").getroproperty("enabled")
wend
if(timeout=30)then
msgbox "update order btn is not enabled in given time frame
hence exiting action")
exitaction
| Is This Answer Correct ? | 0 Yes | 1 No |
Hi everybody.. I m using QTP 9.2 version., plz send me licence key is it seat or concurrent licence key... plzzzzzzzzz plz help me for this one and its Locking code:8-5C740 Maintenance number: 0123-2820602186.,
can i able to connect any version of qtp to any version qc
how to test Web application using QTP software
What is object state in trigger events,in recovery scenario.write a script to handle this.
how can you write a script without using GUI in QTP?
hai friends i already ask this question but when i post the question the alignment goes wrong .....my question is we have a WEB TABLE ....assume that web table having 3 row's and 3 column here in 2nd row 3rd column having VISIT FACEBOOK link...now i want to check the VISIT FACEBOOK link is available or not ..if it's there i want to click the link ...then how to find the web table row or column count ....don't write the excel or data table script here friends .....consider that it's a WEB TABLE do a favour ...thank's
What are they Advantages and Disadvantages in QTP 9.2?
If you use low level recording,what objects will be recorded in Object Repository and what properties?
Hi Guys...I just started working with QTP now.The frame work they use hear is Write all the functions in function libraries and pass data using data dictionary either from data table or excel .I kind of understood evrthing but one thing I need to know is How do they recognize objects .Do they use object spy and recognize objects or record them ..Does soemone have any idea how they generally do this is such kind of framework
What is a checkpoint? How many check points are there in qtp?
I want to check in the data table(Globalsheet) column exist or not through script .If column not exist only proceeded to next step Pls tell me how to proceeded?
How to use reporter.report event in qtp ?