Click here to Skip to main content
15,867,308 members
Articles / Web Development / HTML
Article

Automating Internet Explorer

Rate me:
Please Sign up or sign in to vote.
4.70/5 (41 votes)
24 Feb 20054 min read 392.4K   7.1K   109   118
An article describing how to automate IE, mainly for testing purposes.

Introduction

I attended an ASP.NET Users Group meeting and saw a presentation given by Demetrie Gerodimos. He is an Architect at Dell and was giving a presentation on Test Driven Development. An interesting point of his presentation for me was when he explained how they execute their tests. A discussion with him after the meeting revealed that they were automating Internet Explorer to test their ASPX pages.

After spending some time researching how easily you can automate Internet Explorer in C# (with the help of some URLs given to me by Demetrie), I began writing my own version of IEDriver. The URLs I looked at had a basic example of how to instruct IE to perform various actions. Over the course of the last year, I have enhanced my IEDriver class to handle other types of interactions with IE that I have required. While this is by no means a complete automation class, I believe it performs many of the common functions needed when writing automated tests.

Background

The basic idea here is that we will use Interop services to invoke methods on the COM interfaces built into Internet Explorer. I have written this article because the documentation available on these interfaces is scarce at best. I have spent a lot of time researching on the web and doing trial and error experimentation with these interfaces to produce much of this IEDriver class.

Using the code

The gist of it is a class called IEDriver. This class' constructor will create a new IEXPLORE.EXE process and attach to it. From then on, the methods on the IEDriver class can be used to simulate a user using his browser. While I have not implemented every type of interaction you could have with your browser, I have implemented most of the routines that I have needed to write automated tests for my product.

I have tried to hide the inner workings of the driver from the user of the class. You will notice that there are ClickXXX methods and GetXXX values that will deal with all the COM interfaces to perform the actions necessary or return the value you are interested in.

Here is an example of how easy this class is to use. This example will simply navigate to Google and search for "Automating Internet Explorer":

C#
IEDriver driver = new IEDriver();
driver.Navigate("http://www.google.com");
driver.SetInputStringValue("q", "Internet Explorer Automation");
driver.ClickButton("btnG");

In this example, "q" is the name of the input control and "btnG" is the name of the button control on the Google page. Preferably, you will have ID attributes on your HTML elements, but if there is no ID attribute, the driver will find the element with a name attribute.

In order to use this code, you will need to do a couple of things. First of all, you will need to add a couple of references to your project. To do this, right click on References and click Add Reference:

Right click references and select Add Reference

When the Add Reference dialog comes up, first select the .NET tab. Scroll down to the Microsoft.MSHtml object, and click the Select button.

Select the Microsoft.mshtml .Net object

Next, click on the COM tab. Scroll down to the Microsoft Internet Controls object and click the Select button.

Select the Microsoft Internet Controls COM object

Now click on OK. This will add the necessary references to your project that will allow IEDriver class to make the necessary calls to automate IE.

Once you have added the appropriate references to your project, just include the IEDriver in your project. Now, all you have to do is import the IEAutomation namespace into your class and you can begin writing automated tests using IE.

Points of Interest

One thing to keep in mind. The documentation on this stuff is not very good so if you need to enhance IEDriver to support a feature that it currently doesn't, your best bet is probably to use your intellisense to invoke a method that you think might do what you want, and assign the variable to some temporary local variable. Then, fire up your debugger and use the watch window to find out all you can about the objects returned.

Tips

While writing my own automated tests, I have discovered that it is useful to extend the IEDriver class and add methods that do tasks that I might perform quite often so that I can use the intellisense and the compiler to eliminate the possibility of mistyping control names. For example:

C#
class MyIEDriver : IEDriver {
    public void ClickSave() {
        ClickButton("SaveButton");
    }
}

This gives you compiler checking for things that may normally only be caught at runtime.

History

  • 2-23-2005: Initial release.

Other Articles

Writing Automated Tests With NUnit and IE.

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


Written By
Web Developer
United States United States
A developer for ScienceTRAX, LLC

Web: www.codeoutlaw.com

Comments and Discussions

 
GeneralRe: Problem with running in IE 7+ Pin
Bassem Zeft28-Jun-10 6:33
Bassem Zeft28-Jun-10 6:33 
GeneralGetElementByValueOnce Pin
Noname_vn1-Dec-08 3:10
Noname_vn1-Dec-08 3:10 
QuestionExcellent - can the update for class constructor as previously posted be added to the source code? Pin
Member 47604192-May-08 13:04
Member 47604192-May-08 13:04 
GeneralIE7 support Pin
Dvir13-Feb-08 4:09
Dvir13-Feb-08 4:09 
GeneralCool! Pin
Dev1238-Jan-08 13:25
Dev1238-Jan-08 13:25 
AnswerRe: Cool! Pin
soptest14-May-08 9:10
soptest14-May-08 9:10 
Generalgreat Pin
ppcode12-Dec-07 22:38
ppcode12-Dec-07 22:38 
QuestionHow to autoprint Pin
Nguoi Lap Trinh22-Nov-07 18:40
Nguoi Lap Trinh22-Nov-07 18:40 
AnswerRe: How to autoprint Pin
Alex Furman26-Nov-07 13:35
Alex Furman26-Nov-07 13:35 
GeneralRe: How to autoprint Pin
Nguoi Lap Trinh26-Nov-07 15:26
Nguoi Lap Trinh26-Nov-07 15:26 
GeneralRe: How to autoprint Pin
martho21-Jul-10 5:41
martho21-Jul-10 5:41 
GeneralRe: How to autoprint Pin
Pavan_N19-Jul-12 0:11
Pavan_N19-Jul-12 0:11 
GeneralAnother solution Pin
Morningkill9-Nov-07 6:06
Morningkill9-Nov-07 6:06 
GeneralRe: Another solution Pin
ZaunCPP28-Oct-08 11:04
ZaunCPP28-Oct-08 11:04 
GeneralRe: Another solution Pin
Morningkill28-Oct-08 20:58
Morningkill28-Oct-08 20:58 
GeneralWeb Testing Integrated With Visual Studio Pin
Frederic Torres7-Oct-07 10:11
Frederic Torres7-Oct-07 10:11 
QuestionHow to automate security alert Pin
dvenkat3-Sep-07 2:12
dvenkat3-Sep-07 2:12 
AnswerRe: How to automate security alert Pin
Frederic Torres7-Oct-07 10:03
Frederic Torres7-Oct-07 10:03 
QuestionRunning the code from web server Pin
atul.pioneers18-Aug-07 2:04
atul.pioneers18-Aug-07 2:04 
AnswerRe: Running the code from web server Pin
Alex Furman7-Nov-07 15:30
Alex Furman7-Nov-07 15:30 
QuestionNullReferenceException Error in VS 2005 Pin
Cyborgcom5-Jul-07 12:16
Cyborgcom5-Jul-07 12:16 
AnswerRe: NullReferenceException Error in VS 2005 Pin
Rbearl2-Sep-09 11:31
Rbearl2-Sep-09 11:31 
GeneralFrames Security, and Normailzation Pin
TriLogic27-May-07 6:11
TriLogic27-May-07 6:11 
GeneralRe: Frames Security, and Normailzation Pin
ywusa200126-Aug-07 3:50
ywusa200126-Aug-07 3:50 
GeneralUnspecified exception thrown when trying to find IE Pin
blottie4-Apr-07 10:38
blottie4-Apr-07 10:38 

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

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