I have a webpage loading inside my WinForm application using C#
I need to programatically type data into specific fields on that page (without using WATIN).
If anyone has any other solution, I am open to it.
The page in question has NO AJAX or JavaScript. They are simple HTML data entry forms.
You can do so using the
Documentproperty of theWebBrowsercontrol :C# code:
Demo HTML page loaded into the
WebBrowserControl: