use
strict;
my
$mech
= WWW::Mechanize::FireFox->new();
$mech
->get_local(
'javascript.html'
);
my
(
$val
,
$type
) =
$mech
->eval_in_page(
<<'JS');
secret
JS
if
(
$type
ne
'string'
) {
die
"Unbekannter Ergebnistyp: $type"
;
};
"Das Kennwort ist $val"
;
$mech
->value(
'pass'
,
$val
);
<>;