I am get table using :
#include <IE.au3>
#include <Array.au3>
$oIE = _IEAttach ("Shop")
$oTable = _IETableGetCollection ($oIE, 1)
$aTableData = _IETableWriteToArray ($oTable)
Local $aExtract = _ArrayExtract($aTableData, 0, 5, 1, 1)
_ArrayDisplay($aExtract, "Row 1-2 cols 2-3")
How Can i insert it before Okra Row ?
HTML :
I am trying using :
Local $oDiv = _IEGetObjById($oIE, "itemDetails")
_IEDocInsertHTML($oDiv, $aExtract, "afterend")
But it was not working