So I will start by saying I am very new and basic when it comes to HttpWebRequesting. I have a scheduler that I want to automate. But in order for me to do so, I have to do all of the following, in this order:
1) enter Username and Password
1a)Hit Login
2) Select radio button with "2016" text
2a)Hit Continue
3) reenter password
3a) Hit OK
4) enter schedule ID
4a) hit Add
After all this the website usually displays a green or red label at the top of the screen representing whether the item was scheduled right or not. At the moment, I have all this working with the WebBrowser Control, and I am scraping off all the Elements and Attributes for each item to check to see if it is the proper field to enter data into. However, I have been recently told that using HttpRequests would be much much much faster.
After researching around some, I came across this for authentication. Am I on the right track??
Any suggestions or hints??