Jump to content

Search the Community

Showing results for tags 'linkgetcollection'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General
    • Announcements and Site News
    • Administration
  • AutoIt v3
    • AutoIt Help and Support
    • AutoIt Technical Discussion
    • AutoIt Example Scripts
  • Scripting and Development
    • Developer General Discussion
    • Language Specific Discussion
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Categories

  • AutoIt Team
    • Beta
    • MVP
  • AutoIt
    • Automation
    • Databases and web connections
    • Data compression
    • Encryption and hash
    • Games
    • GUI Additions
    • Hardware
    • Information gathering
    • Internet protocol suite
    • Maths
    • Media
    • PDF
    • Security
    • Social Media and other Website API
    • Windows
  • Scripting and Development
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Member Title


Location


WWW


Interests

Found 1 result

  1. 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
×
×
  • Create New...