Ваша проблема в том, что для выполнения ваших задач существует iframe:
IFrame:
Ваш код должен перемещаться по этому, например:
Option Explicit Public Sub SubmitInfo() Dim IE As New InternetExplorer With IE .Visible = True .navigate "https://www.w3schools.com/asp/showasphtmfile.asp?filename=demo_reqquery" While .Busy Or .readyState < 4: DoEvents: Wend With .document.getElementsByTagName("iframe")(0).contentDocument .querySelector("input[type=text]").Value = "blah" .querySelector("input[type=submit]").Click End With '.Quit '<== Remember to quit application End With End Sub