Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

WWW::Mechanize::PhantomJS

  • WWW::Mechanize::PhantomJS}

Speed up Selenium with PhantomJS which is a headless Webkit browser using GhostDriver and WWW::Mechanize::PhantomJS.

use strict;
use warnings;
use 5.010;

use WWW::Mechanize::PhantomJS;
my $mech = WWW::Mechanize::PhantomJS->new();
$mech->get('http://google.com');
say $mech->content;
use strict;
use warnings;
use 5.010;

use WWW::Mechanize::PhantomJS;
my $mech = WWW::Mechanize::PhantomJS->new();
$mech->get('http://localhost:8080/');
say $mech->content;