I am using perl modules WWW::Scripter (based on WWW::Mechanize) with JavaScript plugin and I have problems with an essential JavaScript statement.
use WWW::Scripter;
...
my $web = WWW::Scripter->new(agent => '...', autocheck => 1);
...
$web->use_plugin('JavaScript');
...
$web->add_header(Referer => 'http://...');
...
$web->get($url);
where source code includes essential JavaScript statement, such as:
var x = window.history.length;
and this statement cannot be executed with WWW::Scripter module.
I have no issues with any other, even very complicated jquery statements. Just this one!
Any advice?