I have a scenario where I would like to automate programmatically the following process:
Currently, I have to manually
- Navigate to a webpage
- Enter some text (an email) in a certain field on the webpage
- Press the 'Search' button, which generates a new page containing a Table with the results on it.
- Manually scroll through the generated results table and extract 4 pieces of information.
Is there a way for me to do this from a Desktop WPF App using C# ?
I am aware there is a WebClient
type that can download a string
, presumably of the content of the webpage, but I don't see how that would help me.
My knowledge of web based stuff is pretty non-existent so I am quite lost how to go about this, or even if this is possible.