Hi all,
I have a script
#include <IE.au3>
Local $oIE = _IEAttach("anythinghere")
$tags = $oIE.document.GetElementsByTagName("div")
$oCollection = $oIE.document.getElementsByClassName("x-panel-btn-td")
MsgBox(0, "", $oCollection.length)
which shows 8 results, how can i see what those results are, and i need also to get ID of 4th in a row of them
Please help