Hi All,
This sounds like a common issue with QTP, but my issue is similar to
traditional issue, but not exactly the same. Here's what I am trying
to do
There is a Image (button) on the page which I click on - After
clicking on this obviously it will take me another page, the new
page (same browser window) has a bunch of images.
So, the QTP will wait for all the images to download after it clicks
on that button, which I don't want.
So, is there a way to tell qtp to proceed as soon as you click on
this button, goto the next step without waiting?...In other words,
Line 2 is a click and after this statement is executed control is
not going to Line3 right away, there is a delay of 2 mins which I
want to avoid
Line1: Browser("Test").Page("TEST1").WebList("Test2").Select i
Line2: Browser("Test").Page("TEST1").Image("submit").FireEvent
"onclick", 0
Line3: Browser("Test").Page("TEST1").Check CheckPoint("Data
Description")
Note: I played with Object Sync Timeout and Browser Navigation
Timeout, but this doesn't seem to a way to go for me as this piece
of code is in a action which I am calling from other places. Hence
any solutions with Waitproperty or something similar would be great
Please any suggestions are really appreciated
Thank you
Shan