javascript - How to get as much debug traffic information, as possible when using WWW::Scripter module in Perl? -


i using www::scripter module in perl application , trying find out code doing, pages/images/etc downloads, headers , contents gets , in order.

the code this:

        #!/usr/bin/perl -w0                   use strict;         use warnings;         use lwp::debug qw(+);         use lwp::conncache;         use www::scripter;                   ...                   $w = www::scripter->new(agent => '...', autocheck => 1);         $w->conn_cache(lwp::conncache->new); # keep alive         $w->use_plugin('javascript');                   ...                   $w->get($url);                   ...           

what need do, debug information said above, headers , contents of each request, order of requests, etc?

apply instrumentation (slides/examples).


Comments

Popular posts from this blog

jasper reports - Fixed header in Excel using JasperReports -

media player - Android: mediaplayer went away with unhandled events -

python - ('The SQL contains 0 parameter markers, but 50 parameters were supplied', 'HY000') or TypeError: 'tuple' object is not callable -