NAME
WWW::Mechanize::Chrome::DSL - Domain Specific Language for short scripts
SYNOPSIS
use Log::Log4perl qw(:easy);
Log::Log4perl->easy_init($ERROR);
use WWW::Mechanize::Chrome::DSL '$mech';
get 'http://google.de';
my @links = selector('a');
print $_->{innerHTML},"\n" for @links;
click($links[0]);
print content;
This module exports all methods of one WWW::Mechanize::Chrome 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.