in reply to Re^2: 2 questions for Corion regarding href with Mechanize::Firefox
in thread 2 questions for Corion regarding href with Mechanize::Firefox

Thanks for posting actual code and data.

I've never used ->find_all_links in conjunction with ->follow_link. As ->find_all_links needs to return absolute links, and as there is no easy way for ->follow_link to determine URL equivalence for arbitrary href attributes, the problem is basically unsolvable that way.

As a workaround, I would look at ->find_link_dom , which returns DOM objects instead of converting things to strings.

Replies are listed 'Best First'.
Re^4: 2 questions for Corion regarding href with Mechanize::Firefox
by help_3452 (Initiate) on Jul 16, 2013 at 08:11 UTC



    Thank you so much for responding. Your code is dense and I wasn't sure I understood it correctly.

    Really appreciate you taking the time to respond.

    Should I come up with a good solution over the next while I will share it.