Jump to content

Search the Community

Showing results for tags 'span class tags'.

  • 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 have searched but can't find anything that works for me - how do I retrieve the text nodes of <span class tags? Here is a canned search to the results I want to capture: http://hudoc.echr.coe.int/sites/eng/Pages/search.aspx# and I want to retrieve each of the text items which are nicely named : <span class="document-link headline" title="Show Document">CASE OF DE SOUZA RIBEIRO v. FRANCE</span> <span class="column01">22689/07</span> <span class="column03">Judgment (Merits and Just Satisfaction)</span> <span class="column04">Court (Grand Chamber)</span> <span class="column04">13/12/2012</span> <span class="fulltext">Preliminary objection joined to merits and dismissed (Article 34 - Victim) Violation of Article 13+8 - Right to an effective remedy (Article 13 - Effective remedy) (Article 8-2 - Interference Prescribed by law Article 8-1 - Respect for family life Respect for private life Article 8 - Right to respect for private and family life Expulsion) (Brazil) Pecuniary damage - claim dismissed Non-pecuniary damage - award</span> My modified simple script from help seems like it should work for one <span class tag but it doesn't:: #include <IE.au3> $oIE = _IECreate ('http://hudoc.echr.coe.int/sites/eng/Pages/search.aspx#') Sleep(3000) $id = _IEGetObjByName ($oIE, "column01") $oText1 = _IEPropertyGet($id, "innertext") MsgBox(0, "Value", $oText1) _IEQuit ($oIE) Here is the sites structure if it helps:
×
×
  • Create New...