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

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();