http://qs321.pair.com?node_id=11137511

bakiperl has asked for the wisdom of the Perl Monks concerning the following question:

My WMC scripts have suddenly stopped working on windows, but they still work fine on Linux. I am not sure if it was caused by the windows updates or the recent module updates. I hope Corion can check this.
Here is a simple script that causes the freezing of the browser. It has been tested on 3 different machines and the result is the same.
#!/usr/bin/perl -w use strict; use warnings; use 5.012; use WWW::Mechanize::Chrome; use Log::Log4perl ':easy'; Log::Log4perl->easy_init($TRACE); my $mech = WWW::Mechanize::Chrome->new( headless => 0, ); use Data::Dumper; my $res = $mech->get('https://egp.rutgers.edu/wmc.html'); say Dumper $mech->getResourceTree_future()->get; $mech->sleep (20);