c#控制IE浏览器自动点击等事件WebBrowser,mshtml.IHTMLDocument2

简介: 原文:c#控制IE浏览器自动点击等事件WebBrowser,mshtml.IHTMLDocument2可以实现例如通过应用程序操作google搜索,用户输入要搜索的内容,然后在google中搜索;可以自动点击网页上的按钮等功能     1.
原文: c#控制IE浏览器自动点击等事件WebBrowser,mshtml.IHTMLDocument2

可以实现例如通过应用程序操作google搜索,用户输入要搜索的内容,然后在google中搜索;可以自动点击网页上的按钮等功能

    1. 加入对Microsoft Internet Controls的引用;
    2. 加入对Microsoft HTML Object Library的引用;

(要引入Microsoft.mshtml.dll 地址是C:\Program Files\Microsoft.NET\Primary Interop Assemblies)
    3. 通过mshtml.IHTMLDocument2、SHDocVw.InternetExplorer、SHDocVw.ShellWindowsClass获取当前打开的google搜索页面的IE窗口句柄;
    4. 根据3返回的句柄,获得当前打开的google页面的mshtml.IHTMLDocument2对象;
    5. 根据4返回的IHTMLDocument2对象,获得搜索输入框和提交按钮(可查看google页面源文件,确认输入框和提交按钮的类型和名字);
    6. 在搜索输入框中输入要搜索的内容,并执行提交按钮的click动作即可进行搜索;

 

简单来说:

打开ie:

SHDocVw.ShellWindows shellWindows = new SHDocVw.ShellWindowsClass();
object objFlags = 1;
object objTargetFrameName = "";
object objPostData = "";
object objHeaders = "";
SHDocVw.InternetExplorer webBrowser1= (SHDocVw.InternetExplorer)shellWindows.Item(shellWindows.Count-1);
webBrowser1.Navigate(“http://www.google.cn”, ref objFlags, ref objTargetFrameName, ref objPostData, ref objHeaders);

(可以简略点写:object c=null; myWeb.Navigate("http://zhidao.baidu.com/",ref c,ref c,ref c,ref c); )
mshtml.IHTMLDocument2 htmlDoc = webBrowser1.Document as mshtml.IHTMLDocument2;

 

//...获取WebBroswer中的body代码
mshtml.HTMLDocumentClass doc=(mshtml.HTMLDocumentClass)myWeb.Document;
mshtml.HTMLBody body=(mshtml.HTMLBody)docCC.body;
string html=body.innerHTML.ToString();

//...如果里面有Form,要给里面的text填充信息
mshtml.IHTMLDocument2 doc2=(mshtml.IHTMLDocument2)myWeb.Document;
mshtml.IHTMLElementCollection inputs;
inputs=(mshtml.IHTMLElementCollection)doc2.all.tags("INPUT");
mshtml.IHTMLElement element=(mshtml.IHTMLElement)inputs.item("userName",0);
mshtml.IHTMLInputElement inputElement=(mshtml.IHTMLInputElement)element;
inputElement.value="填充信息";

//...要点击里面的某个按钮
mshtml.IHTMLDocument2 doc2=(mshtml.IHTMLDocument2)myWeb.Document;
mshtml.IHTMLElementCollection inputs;
inputs=(mshtml.IHTMLElementCollection)doc2.all.tags("INPUT");
mshtml.IHTMLElement element=(mshtml.IHTMLElement)inputs.item("SubmitBut",0);
element.click();

 

1、根据元素ID获取元素的值。

比如要获取<img class="" id="regimg" src="/register/checkregcode.html?1287068791" width="80" height="22">这个标签里的src属性的值:

mshtml.IHTMLDocument2 doc2 = (mshtml.IHTMLDocument2)webBrowser1.Document;
mshtml.IHTMLElement img = (mshtml.IHTMLElement)doc2.all.item("regimg", 0);

string imgUrl = (string)img.getAttribute("src");

2、填写表单,并确定

mshtml.IHTMLElement loginname = (mshtml.IHTMLElement)doc2.all.item("loginname", 0);
    mshtml.IHTMLElement loginPW = (mshtml.IHTMLElement)doc2.all.item("password", 0);
    mshtml.IHTMLElement loginBT = (mshtml.IHTMLElement)doc2.all.item("formsubmit", 0);
    mshtml.IHTMLElement loginYZ = (mshtml.IHTMLElement)doc2.all.item("regcode", 0);
    loginname.setAttribute("value", tbLoginName.Text);
    loginPW.setAttribute("value", tbLoginPassWord.Password);
    loginYZ.setAttribute("value", tbYZ.Text);
    loginBT.click();

3、获取源码

textBox1.Text = doc2.body.innerHTML;

4、执行JS

mshtml.IHTMLWindow2 win = (mshtml.IHTMLWindow2)doc2.parentWindow;
win.execScript("changeRegImg()", "javascript");//使用JS

5、禁止JS,WPF下目前发现唯一适用的一种方法:

public void HideScriptErrors(WebBrowser wb, bool Hide)
   {

    FieldInfo fiComWebBrowser = typeof(WebBrowser).GetField("_axIWebBrowser2", BindingFlags.Instance | BindingFlags.NonPublic);

    if (fiComWebBrowser == null) return;

    object objComWebBrowser = fiComWebBrowser.GetValue(wb);

    if (objComWebBrowser == null) return;

    objComWebBrowser.GetType().InvokeMember(

    "Silent", BindingFlags.SetProperty, null, objComWebBrowser, new object[] { Hide });

   }

   void webBrowser1_Navigated(object sender, NavigationEventArgs e)
   {

    HideScriptErrors(webBrowser1,

    true);

   }

 

 

 

下面是另外一遍博客里写的比较好的

#region Search    
        public static void Search(string searchText)   
        {   
            SHDocVw.InternetExplorer ieWnd = GetIEWndOfGoogle();   
            mshtml.IHTMLDocument2 ieDoc = GetIEDocOfGoogle(ref ieWnd);   
  
            System.Diagnostics.Trace.Assert(ieDoc != null);   
            SearchTextInGoogle(ieDoc, searchText);   
  
            //activate ie window    
            SetForegroundWindow(ieWnd.HWND);               
        }   
        #endregion   
 
        #region get ie window of google page    
        public static SHDocVw.InternetExplorer GetIEWndOfGoogle()   
        {   
            mshtml.IHTMLDocument2 ieDoc;   
            SHDocVw.InternetExplorer ieWnd = null;   
            SHDocVw.ShellWindowsClass shellWindows = new SHDocVw.ShellWindowsClass();   
  
            foreach (SHDocVw.InternetExplorer ie in shellWindows)   
            {   
                //if it is ie window    
                if (ie.FullName.ToUpper().IndexOf("IEXPLORE.EXE") > 0)   
                {   
                    //get the document displayed    
                    ieDoc = (mshtml.IHTMLDocument2)ie.Document;   
                    if (ieDoc.title.ToUpper().IndexOf("GOOGLE") >= 0)   
                    {   
                        ieWnd = ie;   
                        break;   
                    }   
                }   
            }   
               
            shellWindows = null;   
  
            return ieWnd;   
        }   
        #endregion   
 
        #region get ie document of google page    
        public static mshtml.IHTMLDocument2 GetIEDocOfGoogle(ref SHDocVw.InternetExplorer ieWnd)   
        {   
            object missing = null;   
            mshtml.IHTMLDocument2 ieDoc;   
  
            if (ieWnd == null)   
            {   
                ieWnd = new SHDocVw.InternetExplorer();   
                ieWnd.Visible = true;   
                ieWnd.Navigate("http://www.google.com", ref missing, ref missing, ref missing, ref missing);   
  
                //wait for loading completed, or using DocumentComplete Event    
                while (ieWnd.StatusText.IndexOf("完成") == -1)   
                    Application.DoEvents();   
            }   
  
            ieDoc = (mshtml.IHTMLDocument2)ieWnd.Document;   
            return ieDoc;   
        }   
        #endregion

#region Search the given text in google    
        ///// <summary>    
        /// search the given text in google home page    
        /// we can see the source file of google home page to confirm the elements we need    
        /// the html file of google home page is as follows    
        ///     
        /// <table cellpadding=0 cellspacing=0>    
        ///     <tr valign=top>    
        ///         <td width=25%> </td>    
        ///         <td align=center nowrap>    
        ///             <input name=hl type=hidden value=zh-CN>    
        ///             <input autocomplete="off" maxlength=2048 name=q size=55 title="Google 搜索" value="">    
        ///             <br>    
        ///             <input name=btnG type=submit value="Google 搜索">    
        ///             <input name=btnI type=submit value=" 手气不错 ">    
        ///         </td>    
        ///         ...    
        ///// </summary>            
        public static void SearchTextInGoogle(mshtml.IHTMLDocument2 ieDoc, string searchText)   
        {   
            mshtml.HTMLInputElementClass input;   
  
            //set the text to be searched    
            foreach (mshtml.IHTMLElement ieElement in ieDoc.all)   
            {   
                //if its tag is input and name is q(question)    
                if (ieElement.tagName.ToUpper().Equals("INPUT"))   
                {   
                    input = ((mshtml.HTMLInputElementClass)ieElement);   
                    if (input.name == "q")   
                    {   
                        input.value = searchText;   
                        break;   
                    }   
                }   
            }   
  
            //click the submit button to search    
            foreach (mshtml.IHTMLElement ieElement in ieDoc.all)   
            {   
                //if its tag is input    
                if (ieElement.tagName.ToUpper().Equals("INPUT"))   
                {   
                    input = (mshtml.HTMLInputElementClass)ieElement;   
                    if (input.name == "btnG")   
                    {   
                        input.click();   
                        break;   
                    }   
                }   
            }   
        }   
        #endregion  

 

参考文章:

http://blog.csdn.net/livelylittlefish/archive/2008/08/25/2829873.aspx

http://hi.baidu.com/andyleesoft/blog/item/802e02289fcc1f94023bf66a.html

http://zhidao.baidu.com/question/48084010.html

 

另外一个例子

IHTMLDocument2 doc = webbrowser.Document.DomDocument as IHTMLDocument2;
IHTMLBodyElement bodyElement = doc.body as IHTMLBodyElement;
if (bodyElement != null)
{

        IHTMLTxtRange range = bodyElement.createTextRange();
        HTMLDocumentClass documentClass = wb1.Document.DomDocument as HTMLDocumentClass;
        IHTMLElement caret_pos = documentClass.getElementById("caret_pos");
        if (caret_pos != null)
       {
               range.moveToElementText(caret_pos);
               range.select();
        }
}

 

2011-3-14添加

给html元素添加事件

IHTMLElement ieElement = .......

((mshtml.HTMLElementEvents2_Event)ieElement).onclick += new mshtml.HTMLElementEvents2_onclickEventHandler(this.element_onClick);

 

public bool element_onClick(mshtml.IHTMLEventObj e)
{。。。。}

要在程序中出发html中的事件,这个想用什么eventhandler之类的,搞了半天都没有研究出来,资料又搜不到,最后用执行js的方法实现之:

js触发事件:

var oEvent = document.createEventObject();

document.getElementById('addrCity').fireEvent('onchange', oEvent);

目录
相关文章
|
2月前
|
Web App开发 JavaScript 前端开发
添加浮动按钮点击滚动到网页底部的纯JavaScript演示代码 IE9、11,Maxthon 1.6.7,Firefox30、31,360极速浏览器7.5.3.308下测试正常
添加浮动按钮点击滚动到网页底部的纯JavaScript演示代码 IE9、11,Maxthon 1.6.7,Firefox30、31,360极速浏览器7.5.3.308下测试正常
|
3月前
|
XML 缓存 JSON
为什么浏览器中有些图片、PDF等文件点击后有些是预览,有些是下载
为什么浏览器中有些图片、PDF等文件点击后有些是预览,有些是下载
238 0
|
27天前
|
JavaScript 前端开发
|
5月前
|
Web App开发 XML 开发框架
技术心得记录:在IE浏览器中的奇怪页面表现
技术心得记录:在IE浏览器中的奇怪页面表现
54 0
|
22天前
|
JavaScript API
深入解析JS中的visibilitychange事件:监听浏览器标签间切换的利器
深入解析JS中的visibilitychange事件:监听浏览器标签间切换的利器
60 0
|
2月前
|
C#
C#一分钟浅谈:委托与事件的实现方式
本文详细介绍了C#编程中委托与事件的基础知识及应用场景。首先解释了委托的概念,包括定义与使用方法;接着介绍了事件这一基于委托的特殊类型,展示了如何在类中定义事件及跨类订阅与处理事件;最后讨论了常见问题如事件未处理异常、重复订阅及内存泄漏等,并提出了相应的解决方案。通过本文,读者将全面掌握委托与事件的使用技巧,提升应用程序的设计与开发水平。
108 7
|
3月前
|
编解码 JavaScript 前端开发
JS逆向浏览器脱环境专题:事件学习和编写、DOM和BOM结构、指纹验证排查、代理自吐环境通杀环境检测、脱环境框架、脱环境插件解决
JS逆向浏览器脱环境专题:事件学习和编写、DOM和BOM结构、指纹验证排查、代理自吐环境通杀环境检测、脱环境框架、脱环境插件解决
98 1
|
3月前
|
C#
由浅入深理解C#中的事件
由浅入深理解C#中的事件
108 19
|
3月前
|
JavaScript
VUE——如何兼容IE9|IE10|IE11浏览器
VUE——如何兼容IE9|IE10|IE11浏览器
120 0
VUE——如何兼容IE9|IE10|IE11浏览器
|
3月前
|
图形学 C# 开发者
全面掌握Unity游戏开发核心技术:C#脚本编程从入门到精通——详解生命周期方法、事件处理与面向对象设计,助你打造高效稳定的互动娱乐体验
【8月更文挑战第31天】Unity 是一款强大的游戏开发平台,支持多种编程语言,其中 C# 最为常用。本文介绍 C# 在 Unity 中的应用,涵盖脚本生命周期、常用函数、事件处理及面向对象编程等核心概念。通过具体示例,展示如何编写有效的 C# 脚本,包括 Start、Update 和 LateUpdate 等生命周期方法,以及碰撞检测和类继承等高级技巧,帮助开发者掌握 Unity 脚本编程基础,提升游戏开发效率。
74 0