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
Post a Comment