| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1293 人关注过本帖
标题:[求助]访问InternetExplorer.Document.parentWindow出错
只看楼主 加入收藏
p8499
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2007-9-16
收藏
 问题点数:0 回复次数:1 
[求助]访问InternetExplorer.Document.parentWindow出错

我在做一个Web网页自动测试实施工具。用的是SHDocVw.InternetExplorer。
但是不能访问InternetExplorer.Document.parentWindow。
我把代码简化到最简。哪位朋友会能否帮下忙?谢谢!(就是下面的Exception System.InvalidCastException)

using System;
using System.Collections.Generic;
using SHDocVw;
using System.Threading;
using System.Drawing;
using System.Runtime.InteropServices;
using MSHTML;

namespace TestProject
{ class Class1
{ AutoResetEvent documentComplete = new AutoResetEvent(false);

public static void Main(string[] args)
{ new Class1();
}

public Class1()
{ SHDocVw.InternetExplorer ie=new InternetExplorerClass();
ie.DocumentComplete+=new DWebBrowserEvents2_DocumentCompleteEventHandler(WhenDocumentComplete);

ie.Visible=true;
string url="www.baidu.com";
object ept=System.Type.Missing;
ie.Navigate(url,ref ept,ref ept,ref ept,ref ept);
documentComplete.WaitOne();

IHTMLDocument2 d=(IHTMLDocument2)ie.Document;
System.Console.Write(d.readyState);//输出为Complete

d.parentWindow.execScript(@"document.getElementByName('wd').value='OK';","javascript");//Exception System.InvalidCastException was thrown in debuggee: Specified cast is not valid.这里的意思是d.parentWindow访问出错。不知道为什么
}

public void WhenDocumentComplete(object p1,ref object p2)
{ documentComplete.Set();
}
}
}

搜索更多相关主题的帖子: Document parentWindow 访问 
2007-09-18 13:37
p8499
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2007-9-16
收藏
得分:0 
就是object o=d.parentWindow都会出错。。。
实在是看不懂了,困扰好多天了,有谁能帮帮我啊
2007-09-18 21:41
快速回复:[求助]访问InternetExplorer.Document.parentWindow出错
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.035204 second(s), 9 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved