In web applications, radio buttons are usually part of the webradiogroup. Each webradiogroup contains specific items. We can select one item at a time.
In QTP, we can select the particular radio button using below syntax.
Browser("abc").page("xyz").WebRadioGroup("sex").Select "male"
In above code, we have a WebRadioGroup - sex (with 2 items - male and female).
Above code will select the male.
To select female radiobutton, we can use below line
Browser("abc").page("xyz").WebRadioGroup("sex").Select "female"
Please give your inputs, suggestions, feedback to Us about above QTP topic. We value your thoughts. You can write to me at reply2sagar@gmail.com
In QTP, we can select the particular radio button using below syntax.
Browser("abc").page("xyz").WebRadioGroup("sex").Select "male"
In above code, we have a WebRadioGroup - sex (with 2 items - male and female).
Above code will select the male.
To select female radiobutton, we can use below line
Browser("abc").page("xyz").WebRadioGroup("sex").Select "female"
No comments:
Post a Comment
Please Leave your reply. We value your feedback and inputs