Assumes that the table contains no nested <table>s.

Func DumpTable($oTable)

   Local $cTr = $oTable.querySelectorAll("tr")
   Local $trIndex = 0
   For $oTr in $cTr

       Local $cTd = $oTr.querySelectorAll("td")
       Local $tdIndex = 0
       For $oTd in $cTd
           ConsoleWrite($trIndex & "," & $tdIndex & ": " & $oTd.outerHtml & @CRLF)
           $tdIndex += 1
       Next

       $trIndex += 1
   Next
EndFunc