C#中的WebBrowser控制項的使用

來源:互聯網
上載者:User

關鍵字:C# WebBrowser

作者:txw1958

原文:http://www.cnblogs.com/txw1958/archive/2012/09/24/CSharp-WebBrowser.html

 

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);}

 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.