1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
#!perl
use warnings;
use strict;
use Test::More;
use URI::file ();
BEGIN {
use_ok('WWW::Mechanize');
}
my $mech = WWW::Mechanize->new( cookie_jar => undef );
isa_ok( $mech, 'WWW::Mechanize' );
my $uri = URI::file->new_abs('t/field.html')->as_string;
my $response = $mech->get($uri);
ok( $response->is_success, "Fetched $uri" );
$mech->field( 'dingo', 'Modified!' );
is( $mech->value('dingo'), 'Modified!', 'dingo got changed' );
$mech->set_visible( 'bingo', 'bango' );
is( $mech->value('dingo'), 'bingo', 'dingo changed' );
is( $mech->value('bongo'), 'bango', 'bongo changed' );
$mech->set_visible( [ radio => 'wongo!' ], 'boingo' );
is( $mech->value('wango'), 'wongo!', 'wango changed' );
is( $mech->value( 'dingo', 2 ), 'boingo', 'dingo changed' );
ok( !$mech->value('textarea_name'), 'textarea is empty' );
$mech->field( 'textarea_name' => 'foobar' );
is( $mech->value('textarea_name'), 'foobar', 'textarea has been populated' );
for my $name (qw/__no_value __value_empty/) {
ok( !$mech->value($name), "$name is empty" ) or diag $mech->field($name);
$mech->field( $name, 'foo' );
is( $mech->value($name), 'foo', "$name changed" );
}
for my $name (qw/__value/) {
TODO: {
local $TODO
= 'HTML::TokeParser does not understand how to parse this and returns a value where it should not have one';
ok( !$mech->value($name), "$name is empty" )
or diag $mech->field($name);
}
$mech->field( $name, 'foo' );
is( $mech->value($name), 'foo', "$name changed" );
}
done_testing;
|