Forum Discussion
YMinaev
Staff
15 years agoHi,
You can use code like this:
You can use code like this:
' Initialize Excel object here
objArray = Aliases.iexplore.FindAll("property name", "property value", 100)
For i = 0 To UBound(objArray) - 1
xlSht.Cells(i + 1, 1) = objArray(i).innerText
Next
' Save here