NAME
WWW::Mechanize::PhantomJS::DSL - Domain Specific Language for short scripts
SYNOPSIS
use WWW::Mechanize::PhantomJS::DSL '$mech';
get 'http://google.de';
my @links = selector('a');
print $_->get_text(),"\n" for @links;
click($links[0]);
print content;
This module exports all methods of one WWW::Mechanize::PhantomJS object as subroutines. That way, you can write short scripts without cluttering every line with $mech->
.
This module is highly experimental and might vanish from the distribution again if I find that it is useless.
AUTHORS
Max Maischein corion@cpan.org
COPYRIGHT (c)
Copyright 2009-2024 by Max Maischein corion@cpan.org
.
LICENSE
This module is released under the same terms as Perl itself.