Hi there,
I have the following code:
Set ElementCol = appIE.Document.getElementsByTagName("INPUT")
For Each btnInput In ElementCol
If btnInput.Value = "submit" Then
btnInput.Click
Exit For
End If
Next btnInput
The code itself works fine - it cycles through the webpage looking for input elements with the value of "submit", and when it finds one, it clicks it.
My issue is that I've cycled through all of the available INPUT elements on the page I'm trying to sign in to, and the actual element that controls me logging in is this:
<input type="image" src="img/btn-left-go.gif">
So it's a button that says "go", and the actual btnInput.Value of this button is null. If I change the macro to read:
If btnInput.Value = "" Then
then it will "click" on the first null input that it finds, which unfortunately, is not the login element. I'm confused as to how to "click" on this when it has no label, and when it's about the 4th or 5th element on the page that has no label.
Bookmarks