Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

This resolves #61. #115

Merged
merged 1 commit into from May 3, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 7 additions & 0 deletions lib/WWW/Mechanize/Cookbook.pod
Expand Up @@ -64,6 +64,13 @@ Find all links that have the word "download" in them.
my @links = $mech->find_all_links(
tag => "a", text_regex => qr/\bdownload\b/i );

=head1 ADVANCED

=head2 See what will be sent without actually sending anything

$mech->add_handler("request_send", sub { shift->dump; exit; });
$mech->get("http://www.example.com");

=head1 SEE ALSO

L<WWW::Mechanize>
Expand Down