Click on a specific radio button in a table
SOLVED- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Click on a specific radio button in a table
Hi,
I've a dynamic table tha have many radiobuttons and i need to click on a specific item. is there a way to click on a item by index number.
below script clicks the last item from from the list, not sure how do i click on specific item,
Set updateAddWindow=mypage.panelPnlupdate
If updateAddWindow.Exists And updateAddWindow.Visible=True Then
Log.Message "Address Update Window Found"
Set objRadBtns=updateAddWindow.FindChild("ObjectType","RadioButton",20)
If UBound(objRadBtn)>=0 Then
For i =0 To LBound(objRadBtn)
Set RadBtn=objRadBtn(i)
RadBtn.Click
Next
End If
Solved! Go to Solution.
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ACtually, ALL properties would be more useful than just the Extended properties. When searching for and identifying an object, there could be other properties of the object that can be used. FindChild and NameMapping don't only have to be restricted to the Extended Properties.
@AlexKaras has a good suggestion as well. For some of our work, we use that approach, find a desired row by some other text and then target the Cell contents in that row.
Robert Martin
[Hall of Fame]
Please consider giving a Kudo if I write good stuff
----
Why automate? I do automated testing because there's only so much a human being can do and remain healthy. Sleep is a requirement. So, while people sleep, automation that I create does what I've described above in order to make sure that nothing gets past the final defense of the testing group.
I love good food, good books, good friends, and good fun.
Mysterious Gremlin Master
Vegas Thrill Rider
Extensions available

- « Previous
-
- 1
- 2
- Next »
- « Previous
-
- 1
- 2
- Next »