Whenever I start a WWW::Mechanize::Firefox
Perl script, the first thing that loads into the browser screen are the words "WWW::Mechanize::Firefox".
How do I disable this?
My Perl code
#!perl -w
use strict;
use WWW::Mechanize::Firefox;
my $mech = WWW::Mechanize::Firefox->new( activate => 1 ); # bring the tab to the foreground
$mech->get('perlworkshop.de');
<>;