Hi! I'm trying to figure out what event type I should use to get the value in the "//SPAN[@textContents]". I've tried Text, TextCapture, and GetProperty, but they all error out. The code I'm referring to is below. Any help is greatly appreciated.
Dim result As String
With _desktop.BrowserApplication("[2]")
With .BrowserWindow()
result = .Text("//SPAN[@textContents]")
End With
End With