使用Macro vba访问网页内容

时间:2018-02-21 09:38:42

标签: vba excel-vba internet-explorer excel

我尝试在VBA中创建一个宏来打开网页并进行一些点击,但我在访问Document对象时遇到问题(Browser.Document):

Sub OpenApp()
    Dim Browser As Object
    Dim e As Object

    Set Browser = CreateObject("InternetExplorer.Application")

    Browser.Navigate "http://www.website.com"
    Browser.Visible = True
    Set e = Browser.Document.getElementById("idOfElement")
    e.Click
End Sub

任何关于错误的想法?

0 个答案:

没有答案