The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

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

WWW::Mechanize Clone::PP LWP::UserAgent

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.