Chcę kliknąć na buttona w WebBrowserze. Poprzednio robiłem to tak:

var
  SpiderSubmit : IHTMLInputElement;
  MyDocument : IHTMLDocument3;
begin
if assigned(MyDocument) then
   SpiderSubmit :=
(MyDocument.getElementsByTagName('*').item(0,'')as
IHTMLInputElement);
   if assigned(SpiderSubmit) then
   SpiderSubmit.form.submit;

Ale teraz mam taki kod:
<input type="submit" value="Continue to" title="Continue to">

I mam proble bo ten button NIE MA nazyw. Jak na niego kliknąć?