Click here to Skip to main content
Licence 
First Posted 16 Nov 2003
Views 454,692
Bookmarked 147 times

Microsoft Web Browser Automation using C#

By | 16 Nov 2003 | Article
An article on axWebBrowser/MSHTML automation using Visual C#.

Sample Image - mshtml_automation.jpg

Introduction

The Microsoft Web Browser COM control adds browsing, document, viewing, and downloading capabilities to your applications. Parsing and rendering of HTML documents in the WebBrowser control is handled by the MSHTML component which is an Active Document Dynamic HTML (DHTML) Object Model hosting ActiveX Controls and script languages. The WebBrowser control merely acts as a container for the MSHTML component and implements navigations and related functions. MSHTML can be automated using IDispatch and IConnectionPointContainer-style automation interfaces. These interfaces enable a host to automate MSHTML through the object model.

Note

If you are not using the Visual Studio .NET IDE; use Windows Forms ActiveX Control Importer (Aximp.exe) to convert type definitions in a COM type library for an ActiveX control into a Windows Forms control. For instance: to generate the interop DLL's for the ActiveX browser component using the command line run aximp ..\system32\shdocvw.dll relative to your system32 path. Compilation of a form that uses the AxSHDocVw.AxWebBrowser class would be as follows: csc /r:SHDocVw.dll,AxSHDocVw.dll YourForm.cs.

Using the code

Simple Automation scenario:

In order to automate this task, first add a Microsoft Web Browser object to an empty C# Windows application. In the Visual Studio .NET IDE, this is done by using the "Customize Toolbox..." context menu (on the Toolbox), pick "Microsoft Web Browser" from the COM components list. This will add an "Explorer" control in the "General" section of the Toolbox.

//
// navigate to google on Form load
//
private void Form1_Load(object sender, System.EventArgs e)
{
    object loc = "<A href="http://www.google.com/">http://www.google.com/</A>";
    object null_obj_str = "";
    System.Object null_obj = 0;
    this.axWebBrowser1.Navigate2(ref loc , ref null_obj, 
          ref null_obj, ref null_obj_str, ref null_obj_str);
}

Next open the solution explorer and add a reference to the Microsoft HTML Object Library (MSHTML) from the COM components list and implement the following code.

//
// Global variable Task used to prevent recursive code executions.
// 

using mshtml;

private int Task = 1; // global

private void axWebBrowser1_DocumentComplete(object sender, 
         AxSHDocVw.DWebBrowserEvents2_DocumentCompleteEvent e)

{
switch(Task)
    {
        case 1:

            HTMLDocument myDoc = new HTMLDocumentClass();
            myDoc = (HTMLDocument) axWebBrowser1.Document;

            // a quick look at the google html source reveals: 
            // <INPUT maxLength="256" size="55" name="q">
            //
            HTMLInputElement otxtSearchBox = 
               (HTMLInputElement) myDoc.all.item("q", 0);

            otxtSearchBox.value = "intel corp";

            // google html source for the I'm Feeling Lucky Button:
            // <INPUT type=submit value="I'm Feeling Lucky" name=btnI>
            //
            HTMLInputElement btnSearch = 
               (HTMLInputElement) myDoc.all.item("btnI", 0);
            btnSearch.click();

            Task++;
            break;

        case 2:

            // continuation of automated tasks...
            break;
    }
}

References

MSDN

History

  • Version 1.0 - November 16th 2003 - Original Submission
  • Version 1.1 - November 17th 2003 - Modified axWebBrowser event

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Alexander Kent


Kentdome LLC
United States United States

Member

Biography in progress Wink | ;-)

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
Questionsimulate keystrokes for a website PinmemberMember 79506885:00 25 May '12  
GeneralMy vote of 5 Pinmembersach!!2:27 27 Jul '11  
QuestionMy Vote of 5 PinmemberUmesh. A Bhat18:45 14 Jul '11  
QuestionVery well done! PinmemberOmar Gamil22:24 13 Jul '11  
Generaluses in Web application Pinmemberarinhere18:13 13 Jan '11  
QuestionHow to deploy such a program on end users' PC [modified] Pinmembermilkyjing5:53 3 Jan '11  
GeneralMy vote of 4 Pinmemberoriono23:46 30 Sep '10  
GeneralExecute jQuery Pinmemberolibara7:06 12 May '10  
GeneralThank You PinmemberAbinash Bishoyi20:48 12 Jan '10  
QuestionHow to call function of HTML page Pinmemberanhdungitvn22:19 28 Oct '09  
AnswerRe: How to call function of HTML page [modified] Pinmemberzhao wei14:55 9 May '10  
GeneralNot in IE8 though Pinmemberfavazfarook17:00 7 Aug '09  
QuestionHow do I delay until AJAX is finished processing the page? PinmemberMember 138216012:31 29 Jul '09  
AnswerRe: How do I delay until AJAX is finished processing the page? Pinmemberbinhvtt16:54 15 Sep '10  
Questionjavascript Pinmembermnte20:57 28 May '09  
QuestionHow can I load new pages, starting this process over with each one... PinmembertrinityAngie3:45 14 May '09  
QuestionHow to determine when navigation is completed PinmemberMing Liu16:47 9 May '09  
GeneralGood add-on to this article Pinmemberwinmagic20049:04 13 Jan '09  
QuestionHow ot import mshtml and SHDocvw? PinmemberYBONG14:18 16 Dec '08  
Generalweb automation Pinmemberahmed_hosni198815:26 5 Dec '08  
i want to know how to give the value to textarea by using mshtml
AnswerRe: web automation Pinmemberamertak7:43 19 Apr '09  
QuestionHow to click a javascript object or button? Pinmemberlalspo17:15 7 Nov '08  
AnswerRe: How to click a javascript object or button? PinmemberYBONG14:25 16 Dec '08  
GeneralRe: How to click a javascript object or button? Pinmemberanhdungitvn22:52 28 Oct '09  
QuestionHow to make automatic download? PinmemberHesham Yassin9:09 15 Oct '08  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120604.1 | Last Updated 17 Nov 2003
Article Copyright 2003 by Alexander Kent
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid