0
我在與執行以下任務問題:IE按鈕點擊(上環)用VBA
- 工作 -打開IE並導航到Intranet網頁(它的數據庫)
- 不工作 -點擊 「刪除」 按鈕數據
- 不工作的第一排 -等待IE刷新和
- 不工作 -點擊「刪除」按鈕,現在第一行是第二行。
我想執行一個點擊循環,瀏覽整個網頁搜索「刪除按鈕」。使用GetElementByID
會給我一個RUn Time Error 424 Object Required
錯誤。
這就是我陷入的地方。感謝你的幫助!!!
這裏是代碼我使用:
Sub Website()
Dim IE As Object, Doc As Object, UserName As Object, Password As Object, strCode As String
Set IE = CreateObject("InternetExplorer.Application")
Set IE = New InternetExplorerMedium
IE.Visible = True
' IE open webpage page
IE.Navigate "http://abc.com.au"
Do While IE.ReadyState <> 4: DoEvents: Loop
End Sub
你的循環內沒有任何東西。 – findwindow