Есть сайт, у меня есть логин. Я не могу ввести в поле ввода формы входа.
Я пытался получить связанный объект с именем тега «input», но я не могу его найти.
Dim ie As InternetExplorerMedium
Dim HTML As HTMLDocument
Dim HTML1, HTML2 As HTMLDocument
URL = "xxxx"
Set ie = New InternetExplorerMedium
ie.Visible = True
ie.navigate URL
Do While ie.readyState <> READYSTATE_COMPLETE Or ie.Busy: DoEvents: Loop
Set HTML = ie.document
Set HTML1 = HTML.getElementById("_id0")
Debug.Print HTML.getElementByTagName() '-----------------------------------------Not able to get the tag name
Call HTML1.getElementById("logon:").setAttribute("value", "username") '---------Neither able to update the username & password too
Вот элемент проверки страницы
Я должен заполнить имя пользователя и пароль
![picture of HTML Source](https://i.stack.imgur.com/4PffW.png)