I can trigger a DOM visit, and I can find the input field I'm after. But the value of the field stays the same, no matter if the user enters text in it.
I read in the CEF3 docs, that you get a copy of the DOM. I assumed that to be a copy that is created the moment you request a DOM visit, but it seems to be the same one every time.
How do I read the value? With JavaScript?
Another question: how can I register an OnClick event? I want to capture the click on the submit button.
Edit: And I was wondering why using ICefDomDocument.GetElementById gives an "Access violation" during startup: does that function not exist in the dll?