|
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">Continue</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? |