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

NAME

WWW::Mechanize::Plugin::Display - Display WWW::Mechanize results in a local web browser.

SYNOPSIS

  use WWW::Mechanize;
  use WWW::Mechanize::Plugin::Display;

  my $mech = WWW::Mechanize->new;
  $mech->get('http://www.google.com');
  $mech->display;

DESCRIPTION

When you get an unexpected result while using WWW::Mechanize, it can be useful to inspect the current page that Mechanize has fetched in a local browser.

This plugin adds a method for that, depending on HTML::Display for most of the work.

It should work with WWW::Mechanize, or any sub-class of it.

display()

    $mech->display();

Display the current HTML content in a local browser.

A quick example of setting a preferred browser:

 PERL_HTML_DISPLAY_COMMAND=w3m -T text/html %s

See HTML::Display for configuration details.

AUTHOR

        Mark Stosberg C<< mark@summersault.com >>

COPYRIGHT

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

The full text of the license can be found in the LICENSE file included with this module.

SEE ALSO

perl(1).