Hi there
I'm trying to automate a website at my work. This website has a data table and 10 rows per page. Press a "Next" link table data changes with other data and the same URL.
Func Pru1()
$oGrd = _IETableGetCollection ($oIE, 9)
$aTableData = _IETableWriteToArray($oGrd)
_ArrayDisplay($aTableData)
EndFunc
When I run the func Pru1 get the data shown in the table.
However, when I use Pru2 making a click on the "Next" link I see other data in the table and I get an error:
C: Program Files (x86) AutoIt3 Include IE.au3 (1918): ==> Array Variable subscript badly formatted .:
Local $ a_TableCells [$ i_cols] [$ i_rows]
Local $ a_TableCells [$ i_cols] [ERROR ^
Func Pru2()
_IELinkClickByText($oIE,"Next")
$oGrd = _IETableGetCollection ($oIE, 9)
$aTableData = _IETableWriteToArray($oGrd)
_ArrayDisplay($aTableData)
EndFunc
If the browser used the "View Source Code" can only see the data from the first 10 rows.
How I read this data seems to be loaded dynamically ?.
Sorry for my bad english.
thx