Hello,
I know that, using the webView's "evalscript" function, I can execute Javascript which can change the inner HTML of a webpage.
I was wondering if it was possible to directly change the HTML that the webView contains. I can do that with a System.Windows.Forms.WebBrowser object by doing this:
Code: C#
HtmlDocument htmlDocument = webBrowser.Document;
List<HtmlElement> elements = htmlDocument.All.Cast<HtmlElement>().Where( CONDITION ).ToList();
foreach (HtmlElement element in elements)
{
element.SetAttribute("value", myValue);
}
Basically, is there an equivalent to the System.Windows.Forms.WebBrowser's "Document" property that I could edit in such a way in EO.WebBrowser?
Thanks in advance.