關(guān)鍵字:C# WebBrowser
作者:txw1958
原文:http://www.cnblogs.com/txw1958/archive/2012/09/24/CSharp-WebBrowser.html
0、常用方法
Navigate(string urlString):瀏覽urlString表示的網(wǎng)址Navigate(System.Uri url):瀏覽url表示的網(wǎng)址Navigate(string urlString, string targetFrameName, byte[] postData, string additionalHeaders): 瀏覽urlString表示的網(wǎng)址,并發(fā)送postData中的消息//(通常我們登錄一個(gè)網(wǎng)站的時(shí)候就會(huì)把用戶名和密碼作為postData發(fā)送出去)GoBack():后退GoForward():前進(jìn)Refresh():刷新Stop():停止GoHome():瀏覽主頁WebBrowser控件的常用屬性:Document:獲取當(dāng)前正在瀏覽的文檔DocumentTitle:獲取當(dāng)前正在瀏覽的網(wǎng)頁標(biāo)題StatusText:獲取當(dāng)前狀態(tài)欄的文本Url:獲取當(dāng)前正在瀏覽的網(wǎng)址的UriReadyState:獲取瀏覽的狀態(tài)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、下拉、復(fù)選、多選:
//下拉框:secret.SetAttribute("value", "question1"); //復(fù)選框rememberme.SetAttribute("Checked", "True");//多選框cookietime.SetAttribute("checked", "checked");
5、根據(jù)已知有ID的元素操作沒有ID的元素:
HtmlElement btnDelete = webBrowser1.Document.GetElementById(passengerId).Parent.Parent.Parent.Parent.FirstChild.FirstChild.Children[1].FirstChild.FirstChild;
根據(jù)Parent,FirstChild,Children[1]數(shù)組,多少層級(jí)的元素都能找到。
6、獲取Div或其他元素的樣式:
webBrowser1.Document.GetElementById("addDiv").Style;
7、直接執(zhí)行頁面中的腳本函數(shù),帶動(dòng)態(tài)參數(shù)或不帶參數(shù)都行:
Object[] objArray = new Object[1];objArray[0] = (Object)this.labFlightNumber.Text;webBrowser1.Document.InvokeScript("ticketbook", objArray);webBrowser1.Document.InvokeScript("return false");
8、自動(dòng)點(diǎn)擊、自動(dòng)提交:
HtmlElement btnAdd = doc.GetElementById("addDiv").FirstChild;btnAdd.InvokeMember("Click");
9、自動(dòng)賦值,然后點(diǎn)擊提交按鈕的時(shí)候如果出現(xiàn)腳本錯(cuò)誤或一直加載的問題,一般都是點(diǎn)擊事件執(zhí)行過快,這時(shí)需要借助Timer控件延遲執(zhí)行提交按鈕事件:
this.timer1.Enabled = true;this.timer1.Interval = 1000 * 2;private void timer1_Tick(object sender, EventArgs e){ this.timer1.Enabled = false; ClickBtn.InvokeMember("Click");//執(zhí)行按扭操作}
10、屏蔽腳本錯(cuò)誤:
將WebBrowser控件ScriptErrorsSuppressed設(shè)置為True即可
11、自動(dòng)點(diǎn)擊彈出提示框:
private void webBrowser1_Navigated(object sender, WebBrowserNavigatedEventArgs e){ //自動(dòng)點(diǎn)擊彈出確認(rèn)或彈出提示 IHTMLDocument2 vDocument = (IHTMLDocument2)webBrowser1.Document.DomDocument; vDocument.parentWindow.execScript("function confirm(str){return true;} ", "javascript"); //彈出確認(rèn) vDocument.parentWindow.execScript("function alert(str){return true;} ", "javaScript");//彈出提示}
WebBrowser頁面加載完畢之后,在頁面中進(jìn)行一些自動(dòng)化操作的時(shí)候彈出框的自動(dòng)點(diǎn)擊(屏蔽)
private void webBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e){ //自動(dòng)點(diǎn)擊彈出確認(rèn)或彈出提示 IHTMLDocument2 vDocument = (IHTMLDocument2)webBrowser1.Document.DomDocument; vDocument.parentWindow.execScript("function confirm(str){return true;} ", "javascript"); //彈出確認(rèn) vDocument.parentWindow.execScript("function alert(str){return true;} ", "javaScript");//彈出提示 //下面是你的執(zhí)行操作代碼}
12、獲取網(wǎng)頁中的Iframe,并設(shè)置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、網(wǎng)頁中存在Iframe的時(shí)候webBrowser1.Url和webBrowser1_DocumentCompleted中的e.Url不一樣,前者是主框架的Url,后者是當(dāng)前活動(dòng)框口的Url。
14、讓控件聚焦
this.webBrowser1.Select();this.webBrowser1.Focus();doc.All["TPL_password_1"].Focus();
15、打開本地網(wǎng)頁文件
webBrowser1.Navigate(Application.StartupPath + @"\Test.html");
16、獲取元素、表單
//根據(jù)Name獲取元素public HtmlElement GetElement_Name(WebBrowser wb,string Name){ HtmlElement e = wb.Document.All[Name]; return e;}//根據(jù)Id獲取元素public HtmlElement GetElement_Id(WebBrowser wb, string id){ HtmlElement e = wb.Document.GetElementById(id); return e;}//根據(jù)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;}//設(shè)置元素value屬性的值public void Write_value(HtmlElement e,string value){ e.SetAttribute("value", value);}//執(zhí)行元素的方法,如:click,submit(需Form表單名)等public void Btn_click(HtmlElement e,string s){ e.InvokeMember(s);}
聯(lián)系客服