06-16-2009, 12:47 PM
Hi,
I am not sure how you can parameterize the webbuttons and images inside a webtable.. but you can try this.
Please try this...
I am not sure how you can parameterize the webbuttons and images inside a webtable.. but you can try this.
Code:
Count1 = Browser("").page("").Webtable("").childItemCount(row,column,"Webbutton")
For i = 0 to Count1
oWebButton = Browser("").page("").Webtable("").childItem(row,column,"Webbutton",cint(i))
oWebButton.Click ' Clicks the first(with index 0) webbutton in the webtable
a = oWebButton.GetRoproperty("html id")
Please try this...