Reputation: 353
I am trying to make a simple app that will take basic information like name, phone number and email address use it to fill out the fields on a webpage. I know it seems simple but my brain is stuck here.
Upvotes: 0
Views: 135
Reputation: 1143
Take a look at this library: https://github.com/AngleSharp/AngleSharp
one of its key features is: Form submission (easily log in everywhere) which means it can be used to fill out HTML forms and submit them to the server.
What you will have to do is collect the info using your apps' UI and then use this library to pass the data to the webpage form, then submit.
Upvotes: 1