I'm enjoying Test::WWW::Mechanize with one quirk: It fails links to pages on wikipedia
A link to the main wikipedia page is ok.
There is no javascript in the page.
The link works in firefox, konqueror and wget. Per the WWW::Mechanize faq I've struggled to find the difference between the browsers and Mech
The only slight clue is that wget -vS shows that wikipedia is behind a squid caching proxy. --But this is also the case for the front page which works.
To get on w/ my life, I'm linking to gnu.org but still would appreciate any help in resolving this mystery.
Below is minimal but complete Perl / html to reproduce the problem
#!/usr/bin/perl
use strict;
use warnings;
use Test::WWW::Mechanize;
use Test::More tests=>2;
my $mech=Test::WWW::Mechanize->new( "stack_depth" => 10, 'timeout' =>
+60 );
$mech->get_ok('http://localhost/test.html');
# fails
$mech->page_links_ok();
__DATA__
<!-- http://localhost/test.html -->
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>
test
</title>
</head>
<body>
<p>
<a href="http://en.wikipedia.org/wiki/Affero_General_Public_Lice
+nse"> fails </a>
</p>
<p>
<a href="http://thecsl.org">works</a>
</p>
</p>
<a href-="http://wikipedia.org/">works</a>
</p>
<p>
<a href="http://en.wikipedia.org/wiki/Mode_Gakuen_Cocoon_Tower
+">fails</a>
</p>
<p>
<a href="http://www.gnu.org/licenses/agpl.html">?</a>
</p>
</body>
</html>
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|