in reply to Re: Win32::IEAutomation - Getting all links in a page
in thread Win32::IEAutomation - Getting all links in a page

You presume correctly!! Thanks for the reply.
  • Comment on Re^2: Win32::IEAutomation - Getting all links in a page

Replies are listed 'Best First'.
Re^3: Win32::IEAutomation - Getting all links in a page
by ikegami (Patriarch) on Oct 18, 2008 at 19:12 UTC

    By the way, if you want the urls and don't have any other use for the link objects, you can use

    my @urls = map { $_->linkUrl() } $ie->getAllLinks();