In C#, I managed to get the entire HTMLDocumentClass from an InternetExplorer object (navigating to a certain URL).
However, in Visual Studio 2008's debug mode, the content of this HTMLDocumentClass for this particular URL is MASSIVE, including attributes like activeElement, alinkColor, all, applets, charset, childNodes, etc, etc ,etc.
There's a button in that page that I want the to change to "Clicked". But I have no idea how to find the name/id/tag of that button. There's a simple tutorial that uses statements like :
HTMLInputElement button =
(HTMLInputElement)theDoc.getElementById("Button1");
button.click();
But the structure of my URL is 100 times more complex than that.
Let's say the URL is yahoo.com, and I want to 'click' the Web Search button.
Any systematic way of going about this?