У меня есть некоторый код, который используется для очистки данных с веб-страницы, однако веб-страница изменилась и больше не может заставить ее работать. Код должен выполнять вычисления в таблице транзакций инсайдеров, однако getelementsbytagname("td")
больше не возвращает все ячейки.
Я предполагаю, что это потому, что это страница, встроенная в страницу, или что-то еще, но я не могу решить ее для себя, я не очень знаком с html. Пример веб-страницы: gurufocus.com/stock/lmb/insider
.
Мой код указан ниже:
Sub getStatements()
Dim wb As Object
Dim doc As Object
Dim incomeStmtURLs As Variant
Dim sURL As String
Dim allCells As IHTMLElementCollection
Dim aCell As HTMLTableCell
Dim i As Integer
Dim loginBoxData As String
Application.DisplayAlerts = False
Call ToggleEvents(False)
incomeStmtURLs = Range("Sheet1!h1:h2").Value
For i = 1 To UBound(incomeStmtURLs)
Set wb = CreateObject("internetExplorer.Application")
sURL = incomeStmtURLs(i, 1)
wb.navigate sURL
wb.Visible = False
While wb.Busy
Application.Wait Now + #12:00:01 AM#
DoEvents
Wend
'HTML document
Set doc = wb.document
On Error GoTo err_clear
' gets all cell and looks for date format,
' goes from new transaction to old so once gets to older than a year it exits for loop
' checks nextSibling from date is a buy and if so does calculations, by taking further value sin row
' for priceThisTime have to get rid of $ symbol for calculation
Set allCells = doc.getElementsByTagName("td")
For Each aCell In allCells
MsgBox (aCell.innerText)
If aCell.innerText Like "####-##-##" = True Then
If CDate(aCell.innerText) >= Date - 365 Then
If aCell.NextSibling.innerText = "Buy" Then
buys = buys + 1
sharesThisTime = CDec(aCell.NextSibling.NextSibling.innerText)
priceThisTime = aCell.NextSibling.NextSibling.NextSibling.NextSibling.innerText
totalPrice = totalPrice + (sharesThisTime * CDec(Right(priceThisTime, Len(priceThisTime) - 1)))
shareCount = shareCount + sharesThisTime
End If
Else
Exit For
End If
End If
Next aCell
Sheet6.Cells(i + 1, 2) = buys
If (shareCount <> 0) Then
Sheet6.Cells(i + 1, 3).Value = totalPrice / shareCount
End If
buys = 0
totalPrice = 0
shareCount = 0
err_clear:
If Err <> 0 Then
Err.Clear
Resume Next
End If
wb.Quit
Next i
Call ToggleEvents(True)
End Sub