AOB
Well-known Member
- Joined
- Dec 15, 2010
- Messages
- 680
- Office Version
- 365
- 2016
- 2013
- Platform
- Windows
How might one programmatically retrieve (or construct?) the
So, the VBA equivalent of manually opening a web browser, navigating to a webpage, pressing F12 to open the developer window, inspecting an element, right-click > Copy > XPath ?
I'm iterating through a HTML document and recursively parsing it into a structured collection of specific HTML attributes (e.g.
(Grossly oversimplified snippet there, but just to give an idea of what I'm working with...)
I can get all the HTML attributes fine but would be really useful to get the
Can the
Thanks!
XPath
for any given HTMLElement
within a HTMLDocument
?So, the VBA equivalent of manually opening a web browser, navigating to a webpage, pressing F12 to open the developer window, inspecting an element, right-click > Copy > XPath ?
I'm iterating through a HTML document and recursively parsing it into a structured collection of specific HTML attributes (e.g.
id
, className
, nodeName
, innerHTML
, innerText
etc.)
VBA Code:
Dim docHTML As MSHTML.HTMLDocument
Dim objElement As Object
Set docHTML = New MSHTML.HTMLDocument
docHTML.Body.InnerHTML = strHTML
....
For Each objElement In docHTML.childNodes
....
Next objElement
....
(Grossly oversimplified snippet there, but just to give an idea of what I'm working with...)
I can get all the HTML attributes fine but would be really useful to get the
XPath
as well, but that property isn't exposed via MSHTML.HTMLDocument
.Can the
XPath
be derived, or is there some other (XML?) method by which the XPath
for any given element might be retrieved?Thanks!