Micro Focus QTP (UFT) Forums
What is the procedure to wait after select the webradio group.? - Printable Version

+- Micro Focus QTP (UFT) Forums (https://www.learnqtp.com/forums)
+-- Forum: Micro Focus UFT (earlier known as QTP) (https://www.learnqtp.com/forums/Forum-Micro-Focus-UFT-earlier-known-as-QTP)
+--- Forum: VB Scripting/Descriptive Programming (https://www.learnqtp.com/forums/Forum-VB-Scripting-Descriptive-Programming)
+--- Thread: What is the procedure to wait after select the webradio group.? (/Thread-What-is-the-procedure-to-wait-after-select-the-webradio-group)



What is the procedure to wait after select the webradio group.? - Uma - 09-27-2011

Hi,
Below is my code,
Code:
Browser("name:=My Listings","creationtime:=0").Page("title:=My Listings").WebRadioGroup("name:=126","index:=0").Select Class1
After select the radio button,I want my QTP to wait for some time to get the new page and fields load.
[According to the radio buttion,the page will get refresh and new fileds will display]
I tried with wait(40) and Sync.
I am in Fast mode in RUN tab.
In the web tab i have 10 seconds for the page load time.
Any help?
Thanks,
Uma


RE: What is the procedure to wait after select the webradio group.? - guin.anirban - 09-28-2011

Wait until any one of the objects exists or visible in the next page.
Use do-while/while/if-else/waitproperty statement.


RE: What is the procedure to wait after select the webradio group.? - Uma - 09-29-2011

Hi guin,
Thank you,I will try.
Uma