So what I'm trying to do is setup my browser so that when I click an input field like a username, password, etc I would have a screen pop up where I can assign the "id" or "name" of the tag to a variable.
Here is a screenshot of what I am trying to do.
I am able to create those pop up boxes using a custom Content Menu Strip.
Here is the code I have behind the context tab:
So from the example above what I am trying to accomplish is I want to be able to click on the username field (then the username menu pops up) and I want to assign the "id" or "name" of the element in the html to the variable of "username".
Got any ideas?
Thanks
Here is a screenshot of what I am trying to do.

I am able to create those pop up boxes using a custom Content Menu Strip.
Here is the code I have behind the context tab:
Code:
Private Sub UsernameToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles UsernameToolStripMenuItem.Click
wbMain.Document.GetElementById("username")
End Sub
So from the example above what I am trying to accomplish is I want to be able to click on the username field (then the username menu pops up) and I want to assign the "id" or "name" of the element in the html to the variable of "username".
Got any ideas?
Thanks