Is there any way to get the content of an element or control of an open web page in a browser from a c# app?
I tried to get the window ex, but I don't know how to use it after to have any sort of communication with it. I also tried this code:
using (var client = new WebClient()) { var contents = client.DownloadString("http://www.google.com"); Console.WriteLine(contents); } This code gives me a lot of data I can't use.