I have to automate webpage. If I click one hyperlink2 it
will take 2 hrs to open. How to automate hyperlink2?

Answer Posted / kumar

If we use Wait statement it has to wait 2 hrs.
We can put synchronization point here using QTP.

Is This Answer Correct ?    5 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain process of smart Identification in QTP?

598


what is description object?

1593


In qtp, how you can get the last character from a string?

556


what is command for executing files?

1510


what is run action?

1435






can u explain relative path architecture framework in qtp?

1560


Explain qtp(quick test professional)?

579


write the vb script for call to new action in qtp?

1858


How do you perform Regreession Testing?

1459


Generic function to search for the unique link in webtable and click on it

2482


What is difference between design time and run time data table?

587


What are the factors on which script execution time is dependent?

605


How QTP identify the system time that's changes every seconds?

593


HI Everybody, I am using QTP 9.2, I have a problem and hope everybody help me solve it. Now I need to use mouse wheel event to zoom in or zoom out in web client, but QTP can't catch this event. I look forward helping of everybody. Thank you very much.

1625


Hi, I have 2 dropdown listboxes called region and city/area. It needs to select one region(Santa Clara) and one city/Area (Sunnyvale).So I put this in the for loop and I am storing the Items in the variable called itemname. The regions value will get changed,so I used reg expression for this regions. This is my code Browser("MLSListings.com").Page("MLSListings.com").Link("ยป County/Area").Click Browser("MLSListings.com").Page("MLSListings.com").WebList ("regions").Check CheckPoint("regions") ListSize=Browser("MLSListings.com").Page ("MLSListings.com").WebList("regions").GetTOProperty("items count") For i = 1 To ListSize-1 Itemname =Browser("MLSListings.com").Page ("MLSListings.com").WebList("regions").GetItem(i+1) Browser("MLSListings.com").Page("MLSListings.com").WebList ("regions").Select Itemname ................. If I run the script,I am getting the following error, Cannot identify the specified item of the regions object. Confirm that the specified item is included in the object's item collection. Any Help? Thank you, Uma

1344