in reply to WWW::Mechanize::Firefox button click problem HP iLO

Maybe you can simulate the event by calling the ->__event() method on the element:

my $el = $mech->by_id('logout_button'); $el->__event('mouseup');

Replies are listed 'Best First'.
Re^2: WWW::Mechanize::Firefox button click problem HP iLO
by ruzam (Curate) on Jul 24, 2015 at 17:27 UTC

    Fantastic! That's exactly what I needed! Thanks!