Jump to content

Search the Community

Showing results for tags 'IE management'.

  • 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. Hi guys, reading >this topic I discovered there is no way to get the "class" attribute value of an object using only IE Management UDF. For example, www.google.com had a DIV element with class = "ctr-p". If I run this script #include <IE.au3> $oIE = _IECreate("http://www.google.com", 0, 0, 1, 0) $tags = _IETagNameGetCollection($oIE, "div") For $tag In $tags $class_value = _IEPropertyGet($tag, "class") If String($class_value) = "ctr-p" Then ConsoleWrite("Object tried" & @CRLF) ExitLoop EndIf Next _IEQuit($oIE) I get "IE.au3 T3.0-1 Error from function _IEPropertyGet, $_IESTATUS_InvalidValue (Invalid Property)" error. This error comes out because _IEPropertyGet has very few property related to DOM object, and Class attribute is not supported (we need to use GetAttribute method to retrieve that one). Can it be implemented by the next version of Autoit? If that attribute can be retrieved using only IE management UDF please tell me the right way
×
×
  • Create New...