I am using Optimus as a headless browser in vb.net, specifically to locate html elements on a page.
The Optimus engine initiates and retrieves a page ok - I can see the full html - a google rearch result as it happens. However
Dim LClasses As ITokenList = _engine.Document.ClassList
returns a 0 length list (even though I can see classes in the page source) and
Dim LNodes As List(Of Node) = _engine.Document.ChildNodes
returns only 2 nodes: html and head - even though there are of course dozens of other nodes.
Is vb.net supported? Am I doing something stupid?
(I have posted this same question on the Optimus Github page - apologies if duplicating it is bad form)