I am attempting to click this login button on a website using VBA, here is the HTML for the button:
<input type="submit" value="Login" onclick="submitForm();">
I have already got it to the point where it enters my username and password as those fields had names but I am unable to get it to click this button as it does not have a name. I have been searching and either I do not know what I am looking for or this must not be that common of an issue. Here is my latest attempt:
objIE.document.getElementsByName("Login")(0).Click
Thanks!