我试图连接到一个网页并输入一个值,但它给我的运行时错误如下:

运行时错误'-2147417848(80010108)' .

这是我的代码:

Sub OpenMyURL()
Dim eRow As Long
Dim ele As Object
Set objIE = CreateObject("InternetExplorer.Application")
myjobtype = InputBox("Enter offer name")
With objIE
    .Visible = True
    .navigate "visualreports.aexp.com/#/views/AmexOffersPersistenceReport/…; 'getting runtime error here "
    Do While .Busy Or .readyState <> 4
        DoEvents
    Loop
    Set what = objIE.document.getElementsByName("omniboxTextBox")
    what.Item(0).Value = myjobtype
    .document.getElementById("JobsButton").Click
        Do While .Busy Or .readyState <> 4
            DoEvents
        Loop
        Set objIE = Nothing
End Sub