http://www.perlmonks.org?node_id=1044435

help_3452 has asked for the wisdom of the Perl Monks concerning the following question:

Good Afternoon All,
These are 2 questions for Corion. I'm asking them here as I think it might help others !

1. I noticed that Mechanize::Firefox does not consistently return usable links when you use $mech->find_all_links
2. I spent quite some time tracing through perl debug
3. I think I understand what's going on.
4. If you navigate to http://m.rte.ie and examine one of the news links in Firebug you will notice that the href in the HTML is not the same as the href in the DOM.
5. This was not obvious to me at the start!

Questions:
Is this correct ? Mech::firefox picks up href from the DOM ? - If so it might be worth making this a little bit clearer in your cpan entry. Perhaps it is clear. but it wasn't to me. (Excuses I'm not a perl pro)
If this is correct could you suggest how I might access all the links consistently ? My thought at the moment is to reexamine the outerHTML. This seems very clumsy !!