Well, since none has given a solution yet. I guess I'll step in.
If you check the html code at the website, you'll see that there is no id. So calling GetElementById ain't going to work.
I realize that you posted this in the Visual Basic section. But I don't use that langauge because the syntax is shitty.
The following code is written in C#, but you should be able to convert it quickly without any issues.
Take a look at
GetElementByTagName
This is a tagname:
I'll also post a little snippet of a function which successfully gets the "check ID" button.
You'll have to figure out how to get the other button yourself. It basically the same method.
Also, to make it even better. I suggest to edit the function so you'll instead be able to get both of the buttons with the same function but different parameters.
Have fun!
Code:
private HtmlElement GetCheckIdButton() {
HtmlElementCollection elements = wbBrowser.Document.GetElementsByTagName("a");
foreach (HtmlElement element in elements) {
if (element.InnerHtml != null) {
if (element.InnerHtml.IndexOf("btn_checkid") != -1)
return element;
}
}
return null;
}