in reply to Win32::IE::Mechanize not getting correct content

I'd highly recommend using Win32::IEAutomation as an alternative - I haven't looked back since switching. This should give you the full HTML for the page, but note it does not exactly match what you see when you 'view source' - it's more like IE's internal representation (with funny business like uppercase tags)
#!/usr/bin/perl use strict; use warnings; use Win32::IEAutomation; my $ie = Win32::IEAutomation->new( visible => 1, maximize => 1 ); my $url = 'http://feeds.reuters.com/~r/reuters/topNews/~3/84952673/new +sarticle.aspx'; $ie->gotoURL( $url ); print $ie->Content;