0
我寫了這個代碼在VBA webscraping:通過類名稱組合兩個元素具有相同的子字符串?
Sub Scrape()
Dim Document As HTMLDocument
Dim Browser As InternetExplorer
Set Browser = New InternetExplorer
Do While Browser.Busy And Not Browser.readyState = READYSTATE_COMPLETE
DoEvents
Loop
Set Document = Browser.Document
Set Elements1 = Document.getElementsByClassName("Prices-red")
Set Elements2 = Document.getElementsByClassName("Prices-white")
End Sub
我想在一個元素命名的元素這兩個元素只搜索「價格」相結合。
這可能嗎?就像我們在Access Prices *
中進行查詢一樣。
向我們展示它在網絡中的一些數據以及您打算如何獲取數據。由於getElementByClassName只會獲取每個特定類的信息。 – PaulFrancis