NAME
WWW::Mechanize::Frames - Perl extension for WWW:Mechanize allowing automatic frames download.
SYNOPSIS
use WWW::Mechanize::Frames;
$url = 'http://www.site_with_frames.com'; $mech = WWW::Mechanize::Frames->new();
$mech->get($url);
@frames = $mech->get_frames();
print $frames[0]->content; print $frames[1]->content;
DESCRIPTION
This is a quick and dirty expansion of WWW::Mechanize adding a function to retrieve frames and returns an array of mech objects each one storing the info about each frame.
EXPORT
None by default.
SEE ALSO
Mention other useful documentation such as the documentation of related modules or operating system documentation (such as man pages in UNIX), or any relevant external documentation such as RFCs or standards.
If you have a mailing list set up for your module, mention it here.
If you have a web site set up for your module, mention it here.
AUTHOR
Nick Stoianov, <cpanperl@yahoo.com>
ACKNOWLEDGEMENTS
Thanks to: Andy Lester for WWW:Mechanize(it is a great tool), Matthew Simon Cavalletto for Clone::PP, and everybody from the Perl community.
COPYRIGHT
Copyright (C) 2005 by Nick Stoianov
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.6 or, at your option, any later version of Perl 5 you may have available.