C#-Wait for IE加载?

时间:2010-11-24 18:05:08

标签: internet-explorer c#-4.0

我正在使用以下代码在网络浏览器中打开一个网址:

        Process p = new Process();
        p.StartInfo.FileName = GetDefaultBrowserPath();  //gets path to default browser from the registry
        p.StartInfo.Arguments = "htp://www.google.com";
        p.Start();

有人能告诉我如何等待IE加载吗?这是解决这个问题的正确方法吗?

谢谢, 麦

2 个答案:

答案 0 :(得分:2)

这样做:

Process.Start("http://www.google.com");

它会在默认浏览器中打开它。

答案 1 :(得分:0)

这可能就是你要找的东西

p.WaitForInputIdle()