I can now get the innertext contents of the table I require using the WebDriver (it is a bit slow compared to IETableWriteToArray):
SetupGecko()
_WD_Startup()
$sSession = _WD_CreateSession($sDesiredCapabilities)
_WD_Navigate($sSession, 'https://courts.ie/judgments')
;$Handle = _WD_Window($sSession, 'window', '')
_WD_Window($sSession, "Maximize")
If @error Then Exit SetError(4, @error)
Local $aResult = _WD_GetTable($sSession, "//table[@class='table alfresco-table']")
_DebugArrayDisplay($aResult)
resulting in:
31/07/2020|O'Donoghue -v- Laois County Council||High Court|Barr J.|24/08/2020
31/07/2020|Reidy -v- An Bord Pleanala||High Court|Barr J.|24/08/2020
31/07/2020|Fitzpatrick & anor -v- Minister for Agriculture Food and the Marine & anor||Supreme Court|McKechnie J.|24/08/2020
...
but I can't find a way of either getting the full (outertext?) which includes the hyperlinks etc. within the table or failing that is there a way using the WebDriver to get all the links within the table much as _IELinkGetCollection? I'd guess it is a type of _WD_FindElement or a _WD_FindElement identified by a wild card Xpath - I'm I on the correct path?
Joe