- or download this
my $doc = $ie->agent->Document;
...
print "Input$c : " . $i->name . " : " . $i->value . " : " . $i
+->type . "\n";
$c++;
}
- or download this
...
my $field = $doc->createElement('<INPUT TYPE="hidden">');
%{$field}->{name} = "FLUFFY";
%{$field}->{value} = "socks";
- or download this
Input1 : Fruit : apple : hidden
Input2 : Animal : dog : hidden
Input3 : language : perl : hidden
Input4 : FLUFFY : socks : hidden