博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C#中的WebBrowser控件的使用
阅读量:2428 次
发布时间:2019-05-10

本文共 4279 字,大约阅读时间需要 14 分钟。

0、常用方法

Navigate(string urlString):浏览urlString表示的网址Navigate(System.Uri url):浏览url表示的网址Navigate(string urlString, string targetFrameName, byte[] postData, string additionalHeaders): 浏览urlString表示的网址,并发送postData中的消息//(通常我们登录一个网站的时候就会把用户名和密码作为postData发送出去)GoBack():后退GoForward():前进Refresh():刷新Stop():停止GoHome():浏览主页WebBrowser控件的常用属性:Document:获取当前正在浏览的文档DocumentTitle:获取当前正在浏览的网页标题StatusText:获取当前状态栏的文本Url:获取当前正在浏览的网址的UriReadyState:获取浏览的状态WebBrowser控件的常用事件:DocumentTitleChanged,CanGoBackChanged,CanGoForwardChanged,DocumentTitleChanged,ProgressChanged,ProgressChanged,

1、获取非input控件的值:
webBrowser1.Document.All["控件ID"].InnerText;或webBrowser1.Document.GetElementById("控件ID").InnerText;或webBrowser1.Document.GetElementById("控件ID").GetAttribute("value");
2、获取input控件的值:
webBrowser1.Document.All["控件ID"].GetAttribute("value");;或webBrowser1.Document.GetElementById("控件ID").GetAttribute("value");
3、给输入框赋值:
//输入框user.InnerText = "myname";password.InnerText = "123456";webBrowser1.Document.GetElementById("password").SetAttribute("value", "Welcome123");
4、下拉、复选、多选:
//下拉框:secret.SetAttribute("value", "question1");  //复选框rememberme.SetAttribute("Checked", "True");//多选框cookietime.SetAttribute("checked", "checked");
5、根据已知有ID的元素操作没有ID的元素:
HtmlElement btnDelete = webBrowser1.Document.GetElementById(passengerId).Parent.Parent.Parent.Parent.FirstChild.FirstChild.Children[1].FirstChild.FirstChild;根据Parent,FirstChild,Children[1]数组,多少层级的元素都能找到。
6、获取Div或其他元素的样式:
webBrowser1.Document.GetElementById("addDiv").Style;
7、直接执行页面中的脚本函数,带动态参数或不带参数都行:
Object[] objArray = new Object[1];objArray[0] = (Object)this.labFlightNumber.Text;webBrowser1.Document.InvokeScript("ticketbook", objArray);webBrowser1.Document.InvokeScript("return false");
8、自动点击、自动提交:
HtmlElement btnAdd = doc.GetElementById("addDiv").FirstChild;btnAdd.InvokeMember("Click");
9、自动赋值,然后点击提交按钮的时候如果出现脚本错误或一直加载的问题,一般都是点击事件执行过快,这时需要借助Timer控件延迟执行提交按钮事件:
this.timer1.Enabled = true;this.timer1.Interval = 1000 * 2;private void timer1_Tick(object sender, EventArgs e){    this.timer1.Enabled = false;    ClickBtn.InvokeMember("Click");//执行按扭操作}
10、屏蔽脚本错误:
将WebBrowser控件ScriptErrorsSuppressed设置为True即可
11、自动点击弹出提示框:
private void webBrowser1_Navigated(object sender, WebBrowserNavigatedEventArgs e){  //自动点击弹出确认或弹出提示  IHTMLDocument2 vDocument = (IHTMLDocument2)webBrowser1.Document.DomDocument;  vDocument.parentWindow.execScript("function confirm(str){return true;} ", "javascript"); //弹出确认  vDocument.parentWindow.execScript("function alert(str){return true;} ", "javaScript");//弹出提示} WebBrowser页面加载完毕之后,在页面中进行一些自动化操作的时候弹出框的自动点击(屏蔽)private void webBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e){    //自动点击弹出确认或弹出提示    IHTMLDocument2 vDocument = (IHTMLDocument2)webBrowser1.Document.DomDocument;    vDocument.parentWindow.execScript("function confirm(str){return true;} ", "javascript"); //弹出确认    vDocument.parentWindow.execScript("function alert(str){return true;} ", "javaScript");//弹出提示    //下面是你的执行操作代码}
12、获取网页中的Iframe,并设置Iframe的src
HtmlDocument docFrame = webBrowser1.Document.Window.Frames["mainFrame"].Document; 或HtmlDocument docFrame = webBrowser1.Document.All.Frames["mainFrame"].Document; docFrame.All["mainFrame"].SetAttribute("src", "http://www.baidu.com/");
13、网页中存在Iframe的时候webBrowser1.Url和webBrowser1_DocumentCompleted中的e.Url不一样,前者是主框架的Url,后者是当前活动框口的Url。14、让控件聚焦
this.webBrowser1.Select();this.webBrowser1.Focus();doc.All["TPL_password_1"].Focus();
15、打开本地网页文件
webBrowser1.Navigate(Application.StartupPath + @"\Test.html");
16、获取元素、表单
//根据Name获取元素public HtmlElement GetElement_Name(WebBrowser wb,string Name){    HtmlElement e = wb.Document.All[Name];    return e;}//根据Id获取元素public HtmlElement GetElement_Id(WebBrowser wb, string id){    HtmlElement e = wb.Document.GetElementById(id);    return e;}//根据Index获取元素public HtmlElement GetElement_Index(WebBrowser wb,int index){    HtmlElement e = wb.Document.All[index];    return e;}//获取form表单名name,返回表单public HtmlElement GetElement_Form(WebBrowser wb,string form_name){    HtmlElement e = wb.Document.Forms[form_name];    return e;}//设置元素value属性的值public void Write_value(HtmlElement e,string value){    e.SetAttribute("value", value);}//执行元素的方法,如:click,submit(需Form表单名)等public void Btn_click(HtmlElement e,string s){    e.InvokeMember(s);}

转载地址:http://exnmb.baihongyu.com/

你可能感兴趣的文章
iterm2 保存阿里云登陆并防止断开连接
查看>>
brew安装
查看>>
centos 无法连接网络
查看>>
mysql5.7初始密码查看及密码重置
查看>>
go语言实现2048小游戏(完整代码)
查看>>
动态二维码免费制作
查看>>
C语言贪吃蛇
查看>>
Python练手项目
查看>>
知网毕业论文爬取
查看>>
Django无法显示图片
查看>>
MyBatis常见面试题和答案(2020最新版)
查看>>
AOP技术基础
查看>>
【Spring】HttpMessageConverter的作用及替换
查看>>
聊聊Spring中的数据绑定 --- DataBinder本尊(源码分析)
查看>>
Spring MVC 框架的请求处理流程及体系结构
查看>>
mybatis-generator-gui界面工具生成实体
查看>>
Github访问速度很慢的原因,以及解决方法
查看>>
数据库分区、分表、分库、分片
查看>>
数据库垂直拆分 水平拆分
查看>>
关系型数据库设计:三大范式的通俗理解
查看>>