VBA 代码返回“需要对象”错误,不确定导致该错误的原因

发布于 2025-01-18 06:31:06 字数 707 浏览 1 评论 0原文

由于我的代码存在一些问题,我已删除该 URL,因为它需要特定访问权限。我已确认 ID 正确并复制/粘贴,而不是手动输入。我的代码确实打开了 IE,打开了正确的 URL,但没有将“test”粘贴到描述框中。我做错了什么?我已将返回错误的行加粗。

Sub Test1()
    Dim IE As Object
    Dim doc As HTMLDocument
    Set IE = CreateObject("InternetExplorer.Application")

    IE.Visible = True
    Url = "website"

    With IE
        .navigate Url
        .Visible = True
        'Waiting till page loads
        Do While .readyState <> READYSTATE_COMPLETE
            DoEvents
            Debug.Print "Waiting on IE" & Time
        Loop

    End With
    
    Application.Wait (Now + TimeValue("00:00:08"))
    
    **IE.document.getElementById("new_call.description").Value = "test"**
End Sub

Having some issues with my code, I've removed the URL since it requires specific access. I have confirmed the ID is correct and copy/pasted rather than manual typing. My code does open up IE, opens the correct URL, but does not paste "test" into the description box. What have I done wrong? I've bolded the line that returns the error.

Sub Test1()
    Dim IE As Object
    Dim doc As HTMLDocument
    Set IE = CreateObject("InternetExplorer.Application")

    IE.Visible = True
    Url = "website"

    With IE
        .navigate Url
        .Visible = True
        'Waiting till page loads
        Do While .readyState <> READYSTATE_COMPLETE
            DoEvents
            Debug.Print "Waiting on IE" & Time
        Loop

    End With
    
    Application.Wait (Now + TimeValue("00:00:08"))
    
    **IE.document.getElementById("new_call.description").Value = "test"**
End Sub

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文