I'm currently working on a project in C#. So basically I'm checking account existence, however I'm not sure the best route to go about it.
So basically to begin I'm need to go to the root of the website (http://domain.com/). The reason I need to go to the root of the website is to correctly set the cookies. Than I need to "simulate" a click on the anchor of the sign in.
However I don't want to use a Web Browser due to them being incredibly slow. I'm wanting to use HttpWebRequests to send the POST request. But I don't believe I can "click" the sign in link from the root of the website.
Therefor I'm wondering if this is possible and how I could do so using HttpWebRequests. I know using C# WebBrowser I can use InvokeMember by ID.