in reply to Re^9: Need help with WWW::Mechanize and Chrome cookies
in thread Need help with WWW::Mechanize and Chrome cookies

my @urls = map { $_->[0] } @links;

That's not the documented way to get the URL from a WWW::Mechanize::Link object. You should use:

my @urls = map { $_->url_abs } @links;