Website button click - Perl WWW::Mechanize
问题 I try to use the perl script to automate the interaction with a website. I use module WWW::Mechanize to realize my design. But I cannot perform the button click in my perl script by using command as below. $mech->click( $button [, $x, $y] ) $mech->click_button( ... ) It is because this button does not belongs to any form and without name, I can not call or locate this button in my perl script. How can I make it possible to click this button in my perl script like I interact with browser?