c#webBrowser操作网页的问题

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c#webBrowser操作网页的问题相关的知识,希望对你有一定的参考价值。

能否给个webBrowser控制网页模拟人的操作。
顺序如下:打开给定网址,点击到第六页(是javacript连接,该如何处理),将某些项选中,填写姓名等信息,获取其中一张图片,点击提交。
给出大致思路,用到的函数。
解决问题追加分。80+。

页面中有个<iframe id="ifr" src="">

打开给定网址
document.getElementById("ifr").src="某个网址"

点击第六页:
假设是 <a href="?page=6">第六页</a>
var x = document.getElementById("ifr").getElementsByTagName("a");
for(var i=0;i<x.length;i++)
if(x[i].firstChild.nodeValue=="第六页")
x[i].click();


选中某项 填写姓名的功能类似上面的
都是通过
document.getElementById("ifr").document.getElementsByTagName("标签名")来获得iframe页面中所有该标签的对象集合,然后遍历时判断出需要的标签,并对其进行操作

提交表单是
document.getElementById("ifr").document.form[0].submit();

大致意思就是如此 步骤之间可以考虑用 setTimeout("函数名()",毫秒) 来延时一下
参考技术A 添加事件
this.webBrowser1.Document.AttachEventHandler(eventname, eventhandler);
获取对象 this.webBrowser1.Document.GetElementById(id) ;
执行Script this.webBrowser1.Document.InvokeScript(ScriptString);
这三个差不多够了

WPF使用Webbrowser操作网页的主要代码

1,引用mshtml.dll

using mshtml;

2,获取元素属性值

IHTMLDocument2 doc2=(IHTMLDocument)webbrowser1.Document;
IHTMLElement img=(IHTMLElement)doc2.all.item("regimg",0);
string imgUrl=(string)img.getAttribute("src");

3,取表单控件

IHTMLElement loginName=(IHTMLElement)doc2.all.item("loginname",0);
IHTMLElement loginPW=(IHTMLElement)doc2.all.item("password",0);
IHTMLElement loingYZM=(IHTMLElement)doc2.all.item("regcode",0);
IHTMLElement loginBT=(IHTMLElement)doc2.all.item("formsubmit",0);

4,填写表单控件

loginName.setAttribute("value",tbLoginName.Text);
loginPW.setAttribute("value",tbLoginPassWord.Password);
loginYZM.setAttribute("value",tbYZ.Text);

5,点击按钮

loginBT.click();

6,执行js脚本

方法1:

IHTMLwindow win=(IHTMLWindow2)doc2.parentWindows;
win.execScript("alert(‘hello!‘)","javascript");

方法2:

webbrowser1.InvokeScript("eval","alert(‘hello!‘)");

7,屏蔽alert、confirm等,通过重定义实现

private voie webbrowser1_navigated(object sender,WebBroserNavigatedEventArgs e)
{
    IHTMLWindow2 win=(IHTMLWindow2)webbrowser1.Document.Window.DomWindow;
    string s=@"window.alert=null; window.onerror=null;window.confirm=null; windows.open=null; window.showModalDialg=null;";
    win.execScript(s,"javascript");
}

8,接收js消息

[ComVisible(true)]  //这句要加到类定义前,可与COM通信

private void webbrowser1_Navigated(objec sender,WebBrowserNavigatedEventargs e)
{
    IHTMLWindow2 win=(IHTMLWindow2)webbrowser1.Document.Window.DomWindow;
    //假设把alert消息传出来处理
    string s=@"function alert(str){window.external.procMessage(str);}";
    win.execScript(s,"javascript");
    webbrowser1.ObjectForScripting=this;  //指定脚本消息送到当前实例处理
}

//处理脚本消息的方法
public void procMessage(string s)
{
    MessageBox.Show("脚本消息:"+s);
}

 

以上是关于c#webBrowser操作网页的问题的主要内容,如果未能解决你的问题,请参考以下文章

C#webbrowser如何获取网页的html文件

C#webbrowser 跨域访问时 如何获得对此网页的绝对权限

c语言如何调用网页上某个功能

C#下利用WebBrowser完整获取COOKIE

透过DOM操作WebBrowser内的控件

C#winform程序怎么在webbrowser中打开网页???