12-21-2013, 11:26 AM
Hi Guys,
Could u please help me on this
I just want to know how to add the webtable data in to dictionary object
Thanks and Regards
Prabu.E
Could u please help me on this
I just want to know how to add the webtable data in to dictionary object
Code:
Set dictobj=createobject("Scripting.Dictionary")
Set T=Browser("title:=Google").page("title:=Google").webtable("name:=Google")
row=T.rowcount
col=T.columncount()
For icol=1 to col
dictobj.add "I want to know how to add here the webtable data"
Next
Prabu.E