Watin 访问本地主机
在涉及 WatiN 的 MSTest 中执行 C# 代码时,
var browser = new IE("http://localhost:56034/");
网页显示在 IE 中,但大约一分钟后,我收到错误“
等待主文档可用时超时”,并显示错误消息
等待主文档可用时超时< /strong>
代码
var browser = new IE("http://www.bing.com/");
运行良好。
我正在运行 IIS Express 7.5。由于我是 WatiN 的新手,我希望我错过了一些简单的东西。
When executing the c# code in MSTest involving WatiN
var browser = new IE("http://localhost:56034/");
The web page is displayed in IE but after about a minute, I receive the error
Timeout while waiting for main document becoming available with the error message
Timeout while waiting for main document becoming available
The code
var browser = new IE("http://www.bing.com/");
works fine.
I am running IIS Express 7.5. Since I am new to the WatiN I am hoping that I am missing something simple.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
遵循 http://spin.atomicobject.com/2010/12/15/watin-and-com-errors-enable-ie-protected-mode-for-local-intranet-zone,转动IE 8 中 Intranet 区域的 ON 保护模式解决了这个问题。
Following the advice in http://spin.atomicobject.com/2010/12/15/watin-and-com-errors-enable-ie-protected-mode-for-local-intranet-zone, turning ON protected mode for the intranet zone in IE 8 solved the problem.