I am trying to automate (C#) some web pages in Mozilla using the
Mozilla ActiveX control and I am unable to click on elements, I'm
getting the NotImplemented Exception.
IHTMLDocument2 document = (IHTMLDocument2)axMozillaBrowser1.Document;
IHTMLElement searchText = (IHTMLElement)document.all.item("q", null);
searchText.setAttribute("value", "Ferrari", 0);
IHTMLElement goButton = (IHTMLElement)document.all.item("btnG", null);
goButton.click(); <-- System.NotImplemented Exception
Anyone know a work around for this?
Thanks!
_______________________________________________
mozilla-embedding mailing list
[email protected]
http://mail.mozilla.org/listinfo/mozilla-embedding