arya6000 has asked for the wisdom of the Perl Monks concerning the following question:

Hello I saw a few threads about IEAutomation on perlmonks, so I hope someone can help me, I'm trying to click a button on a site, but its HTML is not using <input> tags for buttons instead its using something like this.
<button value="Continue" name="Continue" type="submit" tabindex="1">Co +ntinue</button>
so this line of perl code does not work with it
$ie->getButton('value:', "Continue")->Click;
Is there anything I can do so that button gets pressed?