Working with TWebBrowser
you can interact with elements easily, get fields, set values.
Example:
webBrowser.OleObject.Document.GetElementByID('name').setAttribute('attribute', 'value');
My question may be unrealistic, but does anyone know how to get the tags, perhaps even some information, from an Html code contained in a TStrings
, for example, in a more fluid way?
Giving an example to get clearer what I want:
Let's say I have received the html from a page and I want to get the html code from some tags, get some values, maybe set some to then return, etc.