瓦廷。浏览器打开后莫名关闭
下面是代码...
using (var browser = new IE(URL))
{
Element element = browser.Element(Find.ByName("txtFirstName"));
}
当我检查 Element 对象时,我在调试器中收到此错误消息:
由于先前的函数计算超时,函数计算被禁用。您必须继续执行才能重新启用函数评估。
我重新安装了VS2010,问题还是没有解决。
有什么想法吗?
Below is the code...
using (var browser = new IE(URL))
{
Element element = browser.Element(Find.ByName("txtFirstName"));
}
I'm getting this error message in the Debugger when I inspect the Element object:
Function evaluation disabled because a previous function evaluation timed out. You must continue execution to reenable function evaluation.
I've reinstalled VS2010 and that didn't fix the problem.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于只有两行,因此超时的“上一个功能评估”是 Internet Explorer。重新安装 Internet Explorer,并确保您以正确的权限运行它。我怀疑你的电脑是共享的。您需要管理员权限才能运行此类代码。
希望重新安装 Internet Explorer 有帮助。祝你好运!让我知道你过得怎么样。
Since you only have two lines, the "previous function evaluation" that is timing out is Internet Explorer. Reinstall Internet Explorer, and ensure that you are running it with the correct permissions. I suspect your computer is shared. You need administrator privileges to run this kind of code.
Hope reinstalling Internet Explorer helps. Good luck! Let me know how you get on.