标签: c# internet-explorer exception automation mshtml
我正在开发一个基于mshtml C#IE 11自动化的项目,当我登录网站并检查文档的readystate属性时,它会抛出一个COMException。相同的代码适用于IE 8而没有任何问题:
while (document.readyState != "complete") { //do nothing }
有人可以帮忙吗?
答案 0 :(得分:2)
尝试使用document.readyState代替doc.readyState
document.readyState
doc.readyState