我正在使用以下代码在网络浏览器中打开一个网址:
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加载吗?这是解决这个问题的正确方法吗?
谢谢, 麦
答案 0 :(得分:2)
这样做:
Process.Start("http://www.google.com");
它会在默认浏览器中打开它。
答案 1 :(得分:0)
这可能就是你要找的东西
p.WaitForInputIdle()