I have a macro that should log me into a website at the push of a button. However, it does not. someone already tried to help me but it was a bit over his head, as he said himself. So here I am trying again with more details!
This is the last code he send me.
Public Sub GetInfo()
Dim IE As New InternetExplorer
With IE
.Visible = True
.navigate "https://apiweb.biomerieux.com/login"
While .Busy Or .readyState < 4: DoEvents: Wend
With .document.getElementById("signupEmail")
.Focus
.Value = "xxxx"
End With
Application.Wait Now + TimeSerial(0, 0, 1)
With .document.getElementById("signupPassword")
.Focus
.Value = "yyyy"
End With
On Error Resume Next
With .document.getElementById("signupSubmit")
.Focus
.Click
End With
'.Quit
End With
End Sub
The weirdest thing is, when you enter the credentials via the macro into the textboxes and click the button, the site thinks the credentials are NOT entered, even when they ARE entered.
My previous helper thought that maybe part of the javascript on the site is somehow messing it up.