Group
Extension

Matches 2

WWW-Mechanize ( O/OA/OALDERS/WWW-Mechanize-2.18.tar.gz, OALDERS, 2024; MetaCPAN )
WWW-Mechanize/t/local/follow.t ( view source; MetaCPAN )
ponse = $agent->follow_link( n => 1 );
isa_ok( $response, 'HTTP::Response', 'Gives a response' );
isnt( $agent->uri, $server->url, 'Need to be on a separate page' );

ok( $agent->back(), 'Can go back'
k"
);

ok(
    $agent->follow_link( text => 'Link /foo' ),
    'Can follow obvious named link'
);
isnt( $agent->uri, $server->url, 'Need to be on a separate page' );

ok( $agent->back(), 'Can still go
    $agent->follow_link( text_regex => qr/L\x{f6}schen/ ),
    'Can follow link with o-umlaut'
);
isnt( $agent->uri, $server->url, 'Need to be on a separate page' );

ok( $agent->back(), 'Can still go
WWW-Mechanize ( O/OA/OALDERS/WWW-Mechanize-2.18.tar.gz, OALDERS, 2024; MetaCPAN )
WWW-Mechanize/t/local/reload.t ( view source; MetaCPAN )
Mechanize test page' );
}

INVALIDATE: {
    undef $agent->{content};
    undef $agent->{ct};
    isnt( $agent->title, 'WWW::Mechanize test page' );
    ok( !$agent->is_html, 'Not HTML' );
}

RELOAD: 

Powered by Groonga
Maintained by Kenichi Ishigaki <ishigaki@cpan.org>. If you find anything, submit it on GitHub.