The use of WebBrowser controls in C #

Source: Internet
Author: User

0. Common methods

Navigate (string urlstring): Browse urlstring represents the URL Navigate (system.uri URL): Browse URL represents the URL Navigate (string  Additionalheaders): Browse the URL represented by urlstring and send the message in PostData //(usually we will send the username and password as postdata when we log in to a website)GoBack ( ): Back GoForward (): Forward refresh (): Refresh Stop (): Stop GoHome () : Browse the Home page WebBrowser control's Common properties: Document: Get the currently browsing documents Documenttitle: Gets the page title currently being browsed StatusText: Gets the text URL of the current status bar: Gets the urireadystate of the URL currently being browsed: Gets the status of the browse WebBrowser common events for the control: documenttitlechanged,cangobackchanged,cangoforwardchanged,documenttitlechanged, progresschanged,progresschanged      

1. Gets the value of the non-input control:

webbrowser1.document.all[" control ID"]. InnerText; or webBrowser1.Document.GetElementById (" control ID"). InnerText; or webBrowser1.Document.GetElementById (" control ID"). GetAttribute ("value");             

2. Gets the value of the input control:

webbrowser1.document.all[" control ID"]. GetAttribute ("value");; or WebBrowser1.Document.GetElementById (" control ID"). GetAttribute ("value");            

3. Assign values to the input box:

"MyName" "  123456"; WebBrowser1.Document.GetElementById ("password "). SetAttribute ("value"Welcome123");         

4, pull down, check, multi-select:

//Drop-down box: Secret. SetAttribute ("value" question1 "); // check box rememberme. SetAttribute ( "checked " true "); // multi-marquee cookietime. SetAttribute ( "checked " checked"); 

5. Manipulate elements without IDs based on elements known to have an ID:

HtmlElement btndelete = webBrowser1.Document.GetElementById (Passengerid). parent.parent.parent.parent.firstchild.firstchild.children[1]. Firstchild.firstchild;

Depending on the parent,firstchild,children[1] array, the number of levels of elements can be found.

6. Get the style of div or other elements:

WebBrowser1.Document.GetElementById ("adddiv"). Style;  

7, directly execute the script function in the page, with dynamic parameters or without parameters are the line:

New object[1];objarray[0] = (Object)this. Labflightnumber.text; WebBrowser1.Document.InvokeScript ("ticketbook", Objarray); WebBrowser1.Document.InvokeScript ( "return False");           

8, Automatic Click, automatic submission:

HtmlElement Btnadd = doc. getElementById ("adddiv"). Firstchild;btnadd.invokemember ("click");      

9, automatic assignment, and then click the Submit button when the script error or the problem is always loaded, the Click event is usually executed too fast, you need to delay the execution of the Submit button event with the help of the Timer control:

True;  2;  void Timer1_Tick (objectfalse; Clickbtn.invokemember ("click");  Perform a button action}           

10. Masking script Error:

Set the WebBrowser control scripterrorssuppressed to True

11, automatically click the pop-up prompt box:

Privatevoid Webbrowser1_navigated (Objectsender, WebBrowserNavigatedEventArgs e) {// Auto click Pop-up confirmation or pop-up hint IHTMLDocument2 vdocument = (IHTMLDocument2) webBrowser1.Document.DomDocument; VDocument.parentWindow.execScript ( "function confirm (str) {return true;} " javascript"); // pop-up confirmation vDocument.parentWindow.execScript ( "function alert (str) {return true;} " javascript"); // pop-up prompt}        

WebBrowser when the page is loaded, auto-click (block) of the popup box when you do some automation in the page

Privatevoid Webbrowser1_documentcompleted (Objectsender, WebBrowserDocumentCompletedEventArgs e) {//Auto-click Pop-Up confirmation or pop-up hint IHTMLDocument2 vdocument = (IHTMLDocument2) webBrowser1.Document.DomDocument; VDocument.parentWindow.execScript ( "function confirm (str) {return true;} " javascript"); // pop-up confirmation vDocument.parentWindow.execScript ( "function alert (str) {return true;} " javascript"); // pop-up hint // Below is your execute action code}               

12. Get the IFRAME in the Web page and set the src of the IFRAME

HTMLDocument docframe = webbrowser1.document.window.frames["mainFrame"]. Document; or HTMLDocument docframe = webbrowser1.document.all.frames["mainFrame"]. Document; docframe.all["mainFrame"]. SetAttribute ("src"http://www.baidu.com/");         

13, the existence of the IFRAME in the Web page Webbrowser1.url and webbrowser1_documentcompleted in the E.url is not the same, the former is the main frame URL, the latter is the current active box port URL.

14. Let the control focus

This. Webbrowser1.select ();  This. Webbrowser1.focus ();d OC. all["tpl_password_1"]. Focus ();     

15. Open the local Web file

@ "\test.html"); 

16. Get elements, forms

//Get elements by namePublic HtmlElement Getelement_name (WebBrowser WB,StringName) {HtmlElement e =Wb. Document.all[name];Returne;}//Get elements by IDPublic HtmlElement getelement_id (WebBrowser WB,StringID) {HtmlElement e =Wb. document.getElementById (ID);Returne;}//Get elements based on indexPublic HtmlElement Getelement_index (WebBrowser WB,IntIndex) {HtmlElement E =Wb. Document.all[index];Returne;}//Get form table sole name name, return formPublic HtmlElement Getelement_form (WebBrowser WB,StringForm_name) {HtmlElement e =WB. Document.forms[form_name]; return e;} // Set the value of the element Value property public  void Write_value (HtmlElement e,string value) {E.setattribute (" value", value);} // methods of executing elements, such as: Click,submit (requires form table sole name), public  void Btn_click (HtmlElement e,string s) {e. InvokeMember (s);}                  

Use of WebBrowser controls in C #

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.