I have the following code:
Process p = new Process();
p.StartInfo.FileName = "iexplore.exe";
p.StartInfo.CreateNoWindow = true;
p.StartInfo.WindowStyle = ProcessWindowStyle.Maximized;
p.StartInfo.Arguments = "www.yandex.ru";
p.Start();
After the call to p.Start()
I need to simulate pressing a button on that page. How can I do this?