I have a code to open a web page in IE from my app. My app is basically a launcher.
var process = new Process
{
StartInfo = new ProcessStartInfo
{
FileName = @"IExplore.exe",
Arguments = "-k http://google.com"
}
};
process.Start();
I need to know when IE finished loading the web page. I have tried things like WaitForInputIdle, but it didn't work for me.