I would need the actual site, if you are trying to click a image button or similia, you can always use
form based (website forms)
[php]
WebBrowser1.Document.Forms(0).InvokeMember("Submit ")
[/php]
' will click anchor tags
[php]
WebBrowser.Document.All(a).InvokeMember("click")
[/php]
'will click buttons
[php]
WebBrowser.Document.All(input).InvokeMember("click ").
[/php]
or you can use get element as html element collection
and drill down through each attribute.
either way should be fine.