Jump to content

_IELinkGetCollection how to return the text of every links


Recommended Posts

_IELinkGetCollection() can return the url of all links in a webpage,

#include <IE.au3>

$oIE = _IE_Example ("basic")

$oLinks = _IELinkGetCollection ($oIE)

$iNumLinks = @extended

MsgBox(0, "Link Info", $iNumLinks & " links found")

For $oLink In $oLinks

MsgBox(0, "Link Info", $oLink.href)

Next

Here,$oLink.href), How can i get the link's text by $link.xxx?

Thanks

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...